Compare commits
No commits in common. "55304ac4d9b9a1a9734a9d474bb63df791b8bacb" and "caabd610575c9d33f4d3fab96854d63528f18fd0" have entirely different histories.
55304ac4d9
...
caabd61057
@ -20,21 +20,159 @@
|
|||||||
tags: [ docker, skip-pull ]
|
tags: [ docker, skip-pull ]
|
||||||
- hosts: game1.desu.ltd
|
- hosts: game1.desu.ltd
|
||||||
tasks:
|
tasks:
|
||||||
- name: include tasks for gameservers
|
- name: docker deploy gmod
|
||||||
include_tasks: tasks/game/{{ task }}
|
docker_container:
|
||||||
with_items:
|
name: gmod
|
||||||
- botaniapack2-survival.yml
|
state: started
|
||||||
- gmod.yml
|
image: hackebein/garrysmod
|
||||||
loop_control:
|
restart_policy: unless-stopped
|
||||||
loop_var: task
|
pull: yes
|
||||||
tags: [ always ]
|
tty: yes
|
||||||
|
env:
|
||||||
|
AUTHKEY: "{{ steam_apikey }}"
|
||||||
|
GAMEMODE: prop_hunt
|
||||||
|
MAP: ph_islandhouse
|
||||||
|
WORKSHOP: "2155532035"
|
||||||
|
WORKSHOPDL: "2155532035"
|
||||||
|
ports:
|
||||||
|
- "1200:1200"
|
||||||
|
- "26901:26901/udp"
|
||||||
|
- "27005:27005/udp"
|
||||||
|
- "27015:27015"
|
||||||
|
- "27015:27015/udp"
|
||||||
|
- "27020:27020/udp"
|
||||||
|
volumes:
|
||||||
|
- /data/gmod:/opt/overlay
|
||||||
|
tags: [ docker, gmod ]
|
||||||
|
- name: docker deploy starbound
|
||||||
|
docker_container:
|
||||||
|
name: starbound
|
||||||
|
state: absent
|
||||||
|
image: didstopia/starbound-server
|
||||||
|
restart_policy: unless-stopped
|
||||||
|
pull: yes
|
||||||
|
env:
|
||||||
|
SKIP_STEAMCMD: "true"
|
||||||
|
ports:
|
||||||
|
- "21025:21025"
|
||||||
|
volumes:
|
||||||
|
- /data/starbound/main:/steamcmd/starbound
|
||||||
|
tags: [ docker, starbound ]
|
||||||
|
- name: docker deploy minecraft botaniapack2-survival
|
||||||
|
docker_container:
|
||||||
|
name: botaniapack2-survival
|
||||||
|
state: started
|
||||||
|
image: rehashedsalt/minecraft-forge:1.16.5-36.1.13-openjdk11
|
||||||
|
restart_policy: unless-stopped
|
||||||
|
pull: yes
|
||||||
|
env:
|
||||||
|
TZ: "America/Chicago"
|
||||||
|
ARGS: "-XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1"
|
||||||
|
JRE_XMX: 5G
|
||||||
|
JRE_XMS: 3G
|
||||||
|
FORGE_PACK_ZIP: "https://srv.9iron.club/files/packs/1.16.5-botaniapack2/latest.zip"
|
||||||
|
ports:
|
||||||
|
- "25565:25565/tcp"
|
||||||
|
- "25565:25565/udp"
|
||||||
|
volumes:
|
||||||
|
- /data/minecraft/botaniapack2-survival/backups:/minecraft/backups
|
||||||
|
- /data/minecraft/botaniapack2-survival/logs:/minecraft/logs
|
||||||
|
- /data/minecraft/botaniapack2-survival/world:/minecraft/world
|
||||||
|
- /data/minecraft/botaniapack2-survival/ops.json:/minecraft/ops.json
|
||||||
|
- /data/minecraft/botaniapack2-survival/server.properties:/minecraft/server.properties
|
||||||
|
tags: [ docker, minecraft, botania, survival ]
|
||||||
|
- name: docker deploy minecraft valhelsia3
|
||||||
|
docker_container:
|
||||||
|
name: valhelsia3
|
||||||
|
state: absent
|
||||||
|
image: rehashedsalt/minecraft-forge:1.16.5-36.1.13-openjdk11
|
||||||
|
restart_policy: unless-stopped
|
||||||
|
pull: yes
|
||||||
|
env:
|
||||||
|
TZ: "America/Chicago"
|
||||||
|
ARGS: "-XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1"
|
||||||
|
JRE_XMX: 5G
|
||||||
|
JRE_XMS: 2G
|
||||||
|
FORGE_PACK_ZIP: "https://srv.9iron.club/files/packs/1.16.5-valhelsia/server.zip"
|
||||||
|
ports:
|
||||||
|
- "25565:25565/tcp"
|
||||||
|
- "25565:25565/udp"
|
||||||
|
volumes:
|
||||||
|
- /data/minecraft/valhelsia3/backups:/minecraft/backups
|
||||||
|
- /data/minecraft/valhelsia3/logs:/minecraft/logs
|
||||||
|
- /data/minecraft/valhelsia3/world:/minecraft/world
|
||||||
|
- /data/minecraft/valhelsia3/ops.json:/minecraft/ops.json
|
||||||
|
tags: [ docker, minecraft ]
|
||||||
- hosts: game2.desu.ltd
|
- hosts: game2.desu.ltd
|
||||||
tasks:
|
tasks:
|
||||||
- name: include tasks for gameservers
|
- name: docker deploy css
|
||||||
include_tasks: tasks/game/{{ task }}
|
docker_container:
|
||||||
with_items:
|
name: css
|
||||||
- botaniapack2-creative.yml
|
state: started
|
||||||
- css.yml
|
image: foxylion/steam-css
|
||||||
loop_control:
|
restart_policy: unless-stopped
|
||||||
loop_var: task
|
command: "/home/steam/entrypoint.sh update"
|
||||||
tags: [ always ]
|
pull: yes
|
||||||
|
ports:
|
||||||
|
- "1200:1200"
|
||||||
|
- "26901:26901/udp"
|
||||||
|
- "27005:27005/udp"
|
||||||
|
- "27015:27015"
|
||||||
|
- "27015:27015/udp"
|
||||||
|
- "27020:27020/udp"
|
||||||
|
volumes:
|
||||||
|
- /data/css/server.cfg:/home/steam/css/cstrike/cfg/my-server.cfg
|
||||||
|
tags: [ docker, css ]
|
||||||
|
- name: docker deploy minecraft botaniapack2-creative
|
||||||
|
docker_container:
|
||||||
|
name: botaniapack2-creative
|
||||||
|
state: started
|
||||||
|
image: rehashedsalt/minecraft-forge:1.16.5-36.1.13-openjdk11
|
||||||
|
restart_policy: unless-stopped
|
||||||
|
pull: yes
|
||||||
|
env:
|
||||||
|
TZ: "America/Chicago"
|
||||||
|
ARGS: "-XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1"
|
||||||
|
JRE_XMX: 3G
|
||||||
|
JRE_XMS: 3G
|
||||||
|
FORGE_PACK_ZIP: "https://srv.9iron.club/files/packs/1.16.5-botaniapack2/latest.zip"
|
||||||
|
ports:
|
||||||
|
- "25565:25565/tcp"
|
||||||
|
- "25565:25565/udp"
|
||||||
|
volumes:
|
||||||
|
- /data/minecraft/botaniapack2-creative/backups:/minecraft/backups
|
||||||
|
- /data/minecraft/botaniapack2-creative/logs:/minecraft/logs
|
||||||
|
- /data/minecraft/botaniapack2-creative/world:/minecraft/world
|
||||||
|
- /data/minecraft/botaniapack2-creative/ops.json:/minecraft/ops.json
|
||||||
|
- /data/minecraft/botaniapack2-creative/server.properties:/minecraft/server.properties
|
||||||
|
tags: [ docker, minecraft, botania, creative ]
|
||||||
|
# https://github.com/mkrupczak3/SCP-SECRET-LAB-DOCKER
|
||||||
|
# Kinda forked it and changed a few settings tho
|
||||||
|
- name: docker deploy scpsl
|
||||||
|
docker_container:
|
||||||
|
name: scpsl
|
||||||
|
state: absent
|
||||||
|
image: rehashedsalt/scpsl:latest
|
||||||
|
restart_policy: unless-stopped
|
||||||
|
pull: yes
|
||||||
|
ports:
|
||||||
|
- "7777-7784:7777-7784/udp"
|
||||||
|
- "7777-7784:7777-7784"
|
||||||
|
volumes:
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /home/steam/steamcmd
|
||||||
|
- /home/steam/scp_server
|
||||||
|
tags: [ docker, scpsl ]
|
||||||
|
- name: docker deploy terraria
|
||||||
|
docker_container:
|
||||||
|
name: terraria
|
||||||
|
state: absent
|
||||||
|
image: rehashedsalt/tmodloader-docker:v0.11.8.3
|
||||||
|
restart_policy: unless-stopped
|
||||||
|
pull: yes
|
||||||
|
ports:
|
||||||
|
- 7777:7777
|
||||||
|
volumes:
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
- /data/terraria/data:/terraria
|
||||||
|
tags: [ docker, terraria ]
|
||||||
|
@ -4,6 +4,10 @@
|
|||||||
# k8s
|
# k8s
|
||||||
- hosts: tags_pik8s
|
- hosts: tags_pik8s
|
||||||
gather_facts: no
|
gather_facts: no
|
||||||
|
tasks:
|
||||||
|
- name: install nfs-common
|
||||||
|
apt: name=nfs-common
|
||||||
|
tags: [ k8s, packages, apt ]
|
||||||
roles:
|
roles:
|
||||||
- role: k8s
|
- role: k8s
|
||||||
tags: [ k8s, skip-pull ]
|
tags: [ k8s, skip-pull ]
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# vim:ft=ansible:
|
# vim:ft=ansible:
|
||||||
---
|
---
|
||||||
# Mass storage Pis
|
# Mass storage Pis
|
||||||
- hosts: tags_pistorage
|
- hosts: pistorage
|
||||||
tasks:
|
tasks:
|
||||||
- name: assure mount directory
|
- name: assure mount directory
|
||||||
file: path=/data state=directory mode=0755
|
file: path=/data state=directory mode=0755
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
# vim:ft=ansible:
|
|
||||||
- name: docker deploy minecraft botaniapack2-creative
|
|
||||||
docker_container:
|
|
||||||
name: botaniapack2-creative
|
|
||||||
state: started
|
|
||||||
image: rehashedsalt/minecraft-forge:1.16.5-36.1.13-openjdk11
|
|
||||||
restart_policy: unless-stopped
|
|
||||||
pull: yes
|
|
||||||
env:
|
|
||||||
TZ: "America/Chicago"
|
|
||||||
ARGS: "-XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1"
|
|
||||||
JRE_XMX: 3G
|
|
||||||
JRE_XMS: 3G
|
|
||||||
FORGE_PACK_ZIP: "https://srv.9iron.club/files/packs/1.16.5-botaniapack2/latest.zip"
|
|
||||||
ports:
|
|
||||||
- "25565:25565/tcp"
|
|
||||||
- "25565:25565/udp"
|
|
||||||
volumes:
|
|
||||||
- /data/minecraft/botaniapack2-creative/backups:/minecraft/backups
|
|
||||||
- /data/minecraft/botaniapack2-creative/logs:/minecraft/logs
|
|
||||||
- /data/minecraft/botaniapack2-creative/world:/minecraft/world
|
|
||||||
- /data/minecraft/botaniapack2-creative/ops.json:/minecraft/ops.json
|
|
||||||
- /data/minecraft/botaniapack2-creative/server.properties:/minecraft/server.properties
|
|
||||||
tags: [ docker, minecraft, botania, creative ]
|
|
@ -1,24 +0,0 @@
|
|||||||
# vim:ft=ansible:
|
|
||||||
- name: docker deploy minecraft botaniapack2-survival
|
|
||||||
docker_container:
|
|
||||||
name: botaniapack2-survival
|
|
||||||
state: started
|
|
||||||
image: rehashedsalt/minecraft-forge:1.16.5-36.1.13-openjdk11
|
|
||||||
restart_policy: unless-stopped
|
|
||||||
pull: yes
|
|
||||||
env:
|
|
||||||
TZ: "America/Chicago"
|
|
||||||
ARGS: "-XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1"
|
|
||||||
JRE_XMX: 5G
|
|
||||||
JRE_XMS: 3G
|
|
||||||
FORGE_PACK_ZIP: "https://srv.9iron.club/files/packs/1.16.5-botaniapack2/latest.zip"
|
|
||||||
ports:
|
|
||||||
- "25565:25565/tcp"
|
|
||||||
- "25565:25565/udp"
|
|
||||||
volumes:
|
|
||||||
- /data/minecraft/botaniapack2-survival/backups:/minecraft/backups
|
|
||||||
- /data/minecraft/botaniapack2-survival/logs:/minecraft/logs
|
|
||||||
- /data/minecraft/botaniapack2-survival/world:/minecraft/world
|
|
||||||
- /data/minecraft/botaniapack2-survival/ops.json:/minecraft/ops.json
|
|
||||||
- /data/minecraft/botaniapack2-survival/server.properties:/minecraft/server.properties
|
|
||||||
tags: [ docker, minecraft, botania, survival ]
|
|
@ -1,19 +0,0 @@
|
|||||||
# vim:ft=ansible:
|
|
||||||
- name: docker deploy css
|
|
||||||
docker_container:
|
|
||||||
name: css
|
|
||||||
state: started
|
|
||||||
image: foxylion/steam-css
|
|
||||||
restart_policy: unless-stopped
|
|
||||||
command: "/home/steam/entrypoint.sh update"
|
|
||||||
pull: yes
|
|
||||||
ports:
|
|
||||||
- "1200:1200"
|
|
||||||
- "26901:26901/udp"
|
|
||||||
- "27005:27005/udp"
|
|
||||||
- "27015:27015"
|
|
||||||
- "27015:27015/udp"
|
|
||||||
- "27020:27020/udp"
|
|
||||||
volumes:
|
|
||||||
- /data/css/server.cfg:/home/steam/css/cstrike/cfg/my-server.cfg
|
|
||||||
tags: [ docker, css ]
|
|
@ -1,25 +0,0 @@
|
|||||||
# vim:ft=ansible:
|
|
||||||
- name: docker deploy gmod
|
|
||||||
docker_container:
|
|
||||||
name: gmod
|
|
||||||
state: started
|
|
||||||
image: hackebein/garrysmod
|
|
||||||
restart_policy: unless-stopped
|
|
||||||
pull: yes
|
|
||||||
tty: yes
|
|
||||||
env:
|
|
||||||
AUTHKEY: "{{ steam_apikey }}"
|
|
||||||
GAMEMODE: prop_hunt
|
|
||||||
MAP: ph_islandhouse
|
|
||||||
WORKSHOP: "2155532035"
|
|
||||||
WORKSHOPDL: "2155532035"
|
|
||||||
ports:
|
|
||||||
- "1200:1200"
|
|
||||||
- "26901:26901/udp"
|
|
||||||
- "27005:27005/udp"
|
|
||||||
- "27015:27015"
|
|
||||||
- "27015:27015/udp"
|
|
||||||
- "27020:27020/udp"
|
|
||||||
volumes:
|
|
||||||
- /data/gmod:/opt/overlay
|
|
||||||
tags: [ docker, gmod ]
|
|
@ -1,18 +0,0 @@
|
|||||||
# vim:ft=ansible:
|
|
||||||
# https://github.com/mkrupczak3/SCP-SECRET-LAB-DOCKER
|
|
||||||
# Kinda forked it and changed a few settings tho
|
|
||||||
- name: docker deploy scpsl
|
|
||||||
docker_container:
|
|
||||||
name: scpsl
|
|
||||||
state: absent
|
|
||||||
image: rehashedsalt/scpsl:latest
|
|
||||||
restart_policy: unless-stopped
|
|
||||||
pull: yes
|
|
||||||
ports:
|
|
||||||
- "7777-7784:7777-7784/udp"
|
|
||||||
- "7777-7784:7777-7784"
|
|
||||||
volumes:
|
|
||||||
- /etc/localtime:/etc/localtime:ro
|
|
||||||
- /home/steam/steamcmd
|
|
||||||
- /home/steam/scp_server
|
|
||||||
tags: [ docker, scpsl ]
|
|
@ -1,15 +0,0 @@
|
|||||||
# vim:ft=ansible:
|
|
||||||
- name: docker deploy starbound
|
|
||||||
docker_container:
|
|
||||||
name: starbound
|
|
||||||
state: absent
|
|
||||||
image: didstopia/starbound-server
|
|
||||||
restart_policy: unless-stopped
|
|
||||||
pull: yes
|
|
||||||
env:
|
|
||||||
SKIP_STEAMCMD: "true"
|
|
||||||
ports:
|
|
||||||
- "21025:21025"
|
|
||||||
volumes:
|
|
||||||
- /data/starbound/main:/steamcmd/starbound
|
|
||||||
tags: [ docker, starbound ]
|
|
@ -1,14 +0,0 @@
|
|||||||
# vim:ft=ansible:
|
|
||||||
- name: docker deploy terraria
|
|
||||||
docker_container:
|
|
||||||
name: terraria
|
|
||||||
state: absent
|
|
||||||
image: rehashedsalt/tmodloader-docker:v0.11.8.3
|
|
||||||
restart_policy: unless-stopped
|
|
||||||
pull: yes
|
|
||||||
ports:
|
|
||||||
- 7777:7777
|
|
||||||
volumes:
|
|
||||||
- /etc/localtime:/etc/localtime:ro
|
|
||||||
- /data/terraria/data:/terraria
|
|
||||||
tags: [ docker, terraria ]
|
|
@ -1,23 +0,0 @@
|
|||||||
# vim:ft=ansible:
|
|
||||||
- name: docker deploy minecraft valhelsia3
|
|
||||||
docker_container:
|
|
||||||
name: valhelsia3
|
|
||||||
state: absent
|
|
||||||
image: rehashedsalt/minecraft-forge:1.16.5-36.1.13-openjdk11
|
|
||||||
restart_policy: unless-stopped
|
|
||||||
pull: yes
|
|
||||||
env:
|
|
||||||
TZ: "America/Chicago"
|
|
||||||
ARGS: "-XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1"
|
|
||||||
JRE_XMX: 5G
|
|
||||||
JRE_XMS: 2G
|
|
||||||
FORGE_PACK_ZIP: "https://srv.9iron.club/files/packs/1.16.5-valhelsia/server.zip"
|
|
||||||
ports:
|
|
||||||
- "25565:25565/tcp"
|
|
||||||
- "25565:25565/udp"
|
|
||||||
volumes:
|
|
||||||
- /data/minecraft/valhelsia3/backups:/minecraft/backups
|
|
||||||
- /data/minecraft/valhelsia3/logs:/minecraft/logs
|
|
||||||
- /data/minecraft/valhelsia3/world:/minecraft/world
|
|
||||||
- /data/minecraft/valhelsia3/ops.json:/minecraft/ops.json
|
|
||||||
tags: [ docker, minecraft ]
|
|
20
playbooks/vars/desultd-pleroma-apache.yml
Normal file
20
playbooks/vars/desultd-pleroma-apache.yml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# vim:ft=ansible:
|
||||||
|
apache_global_vhost_settings: |
|
||||||
|
DirectoryIndex index.php index.html
|
||||||
|
Protocols h2 http/1.1
|
||||||
|
apache_vhosts:
|
||||||
|
- servername: cowfee.moe
|
||||||
|
extra_parameters: |
|
||||||
|
Redirect permanent / https://cowfee.moe/
|
||||||
|
apache_vhosts_ssl:
|
||||||
|
- servername: cowfee.moe
|
||||||
|
extra_parameters: |
|
||||||
|
ProxyPreserveHost On
|
||||||
|
ProxyRequests Off
|
||||||
|
ProxyPass / http://127.0.0.1:4000/ nocanon retry=1
|
||||||
|
ProxyPassReverse / https://127.0.0.1:4000/
|
||||||
|
RequestHeader set X_FORWARDED_PROTO 'https'
|
||||||
|
RequestHeader set X-Forwarded-Ssl on
|
||||||
|
certificate_file: /etc/letsencrypt/live/cowfee.moe/fullchain.pem
|
||||||
|
certificate_key_file: /etc/letsencrypt/live/cowfee.moe/privkey.pem
|
||||||
|
certificate_chain_file: /etc/letsencrypt/live/cowfee.moe/chain.pem
|
10
playbooks/vars/desultd-pleroma-certbot.yml
Normal file
10
playbooks/vars/desultd-pleroma-certbot.yml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# vim:ft=ansible:
|
||||||
|
certbot_admin_email: rehashedsalt@cock.li
|
||||||
|
certbot_create_if_missing: yes
|
||||||
|
certbot_create_method: standalone
|
||||||
|
certbot_create_standalone_stop_services:
|
||||||
|
- apache2
|
||||||
|
certbot_certs:
|
||||||
|
- domains:
|
||||||
|
- cowfee.moe
|
||||||
|
- web2.desu.ltd
|
16
playbooks/vars/desultd-pleroma.yml
Normal file
16
playbooks/vars/desultd-pleroma.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# vim:ft=ansible:
|
||||||
|
# Site config
|
||||||
|
pleroma_hostname: cowfee.moe
|
||||||
|
pleroma_open_registration: "true"
|
||||||
|
pleroma_instance_name: Cowfee
|
||||||
|
pleroma_instance_desc: owo
|
||||||
|
|
||||||
|
# Secret config
|
||||||
|
pleroma_secret_key_base: "{{ secret_pleroma_key_base }}"
|
||||||
|
pleroma_secret_signing_salt: "{{ secret_pleroma_signing_salt }}"
|
||||||
|
|
||||||
|
# DB config
|
||||||
|
pleroma_db_host: 192.168.164.156
|
||||||
|
pleroma_db_name: pleroma_cowfee
|
||||||
|
pleroma_db_user: pleroma-cowfee
|
||||||
|
pleroma_db_pass: "{{ secret_pleroma_9iron_db_pass }}"
|
13
playbooks/vars/factorio-main.yml
Normal file
13
playbooks/vars/factorio-main.yml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# vim:ft=ansible:
|
||||||
|
server_version: 1.0.0
|
||||||
|
download_checksum: sha256:81d9e1aa94435aeec4131c8869fa6e9331726bea1ea31db750b65ba42dbd1464
|
||||||
|
service_name: factorio-main
|
||||||
|
service_root: /opt/factorio/main
|
||||||
|
factorio_server_settings:
|
||||||
|
name: "Krabby Land"
|
||||||
|
description: "Where a kid can have fun"
|
||||||
|
max_players: 8
|
||||||
|
visibility:
|
||||||
|
public: false
|
||||||
|
lan: false
|
||||||
|
admins: [ "rehashed_salt" ]
|
@ -15,7 +15,6 @@
|
|||||||
- jq
|
- jq
|
||||||
- ncdu
|
- ncdu
|
||||||
- net-tools
|
- net-tools
|
||||||
- nfs-common
|
|
||||||
- openssh-server
|
- openssh-server
|
||||||
- pwgen
|
- pwgen
|
||||||
- python-is-python3 # God damn you Nextcloud role
|
- python-is-python3 # God damn you Nextcloud role
|
||||||
|
Loading…
Reference in New Issue
Block a user