summaryrefslogtreecommitdiff
path: root/roles
diff options
context:
space:
mode:
Diffstat (limited to 'roles')
-rw-r--r--roles/nameservers/templates/db.simponic.xyz.j21
-rw-r--r--roles/phoneof/tasks/main.yml22
-rw-r--r--roles/phoneof/templates/docker-compose.yml.j218
-rw-r--r--roles/webservers/files/ryo/http.phoneof.simponic.xyz.conf13
-rw-r--r--roles/webservers/files/ryo/https.phoneof.simponic.xyz.conf33
5 files changed, 87 insertions, 0 deletions
diff --git a/roles/nameservers/templates/db.simponic.xyz.j2 b/roles/nameservers/templates/db.simponic.xyz.j2
index d257346..8b6b429 100644
--- a/roles/nameservers/templates/db.simponic.xyz.j2
+++ b/roles/nameservers/templates/db.simponic.xyz.j2
@@ -27,6 +27,7 @@ simponic.xyz. 1 IN A 23.95.214.176
chesshbot.simponic.xyz. 1 IN A 129.123.76.14
;; CNAME Records
+phoneof.simponic.xyz. 43200 IN CNAME ryo.simponic.xyz.
secure.tunnel.simponic.xyz. 1 IN CNAME simponic.xyz.
tunnel.simponic.xyz. 1 IN CNAME simponic.xyz.
party.simponic.xyz. 1 IN CNAME simponic.xyz.
diff --git a/roles/phoneof/tasks/main.yml b/roles/phoneof/tasks/main.yml
new file mode 100644
index 0000000..082e87e
--- /dev/null
+++ b/roles/phoneof/tasks/main.yml
@@ -0,0 +1,22 @@
+---
+- name: ensure phoneof docker/compose exist
+ file:
+ path: /etc/docker/compose/phoneof
+ state: directory
+ owner: root
+ group: root
+ mode: 0700
+
+- name: build phoneof docker-compose.yml.j2
+ template:
+ src: ../templates/docker-compose.yml.j2
+ dest: /etc/docker/compose/phoneof/docker-compose.yml
+ owner: root
+ group: root
+ mode: u=rw,g=r,o=r
+
+- name: daemon-reload and enable phoneof
+ ansible.builtin.systemd_service:
+ state: restarted
+ enabled: true
+ name: docker-compose@phoneof
diff --git a/roles/phoneof/templates/docker-compose.yml.j2 b/roles/phoneof/templates/docker-compose.yml.j2
new file mode 100644
index 0000000..ca17e85
--- /dev/null
+++ b/roles/phoneof/templates/docker-compose.yml.j2
@@ -0,0 +1,18 @@
+version: "3"
+
+services:
+ api:
+ restart: always
+ image: git.simponic.xyz/simponic/phoneof
+ healthcheck:
+ test: ["CMD", "wget", "--spider", "http://localhost:8080/api/health"]
+ interval: 5s
+ timeout: 10s
+ retries: 5
+ env_file: .env
+ volumes:
+ - ./db:/app/db
+ - ./templates:/app/templates
+ - ./static:/app/static
+ ports:
+ - "127.0.0.1:19191:8080"
diff --git a/roles/webservers/files/ryo/http.phoneof.simponic.xyz.conf b/roles/webservers/files/ryo/http.phoneof.simponic.xyz.conf
new file mode 100644
index 0000000..c849a26
--- /dev/null
+++ b/roles/webservers/files/ryo/http.phoneof.simponic.xyz.conf
@@ -0,0 +1,13 @@
+server {
+ listen 80;
+ server_name phoneof.simponic.xyz;
+
+ location /.well-known/acme-challenge {
+ root /var/www/letsencrypt;
+ try_files $uri $uri/ =404;
+ }
+
+ location / {
+ rewrite ^ https://phoneof.simponic.xyz$request_uri? permanent;
+ }
+}
diff --git a/roles/webservers/files/ryo/https.phoneof.simponic.xyz.conf b/roles/webservers/files/ryo/https.phoneof.simponic.xyz.conf
new file mode 100644
index 0000000..2290c4a
--- /dev/null
+++ b/roles/webservers/files/ryo/https.phoneof.simponic.xyz.conf
@@ -0,0 +1,33 @@
+server {
+ listen 443 ssl;
+ server_name headscale.simponic.xyz;
+
+ ssl_certificate /etc/letsencrypt/live/phoneof.simponic.xyz/fullchain.pem;
+ ssl_certificate_key /etc/letsencrypt/live/phoneof.simponic.xyz/privkey.pem;
+ ssl_trusted_certificate /etc/letsencrypt/live/phoneof.simponic.xyz/fullchain.pem;
+
+ ssl_session_cache shared:SSL:50m;
+ ssl_session_timeout 5m;
+ ssl_stapling on;
+ ssl_stapling_verify on;
+
+ ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
+ ssl_ciphers "ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:DES-CBC3-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4";
+
+ ssl_dhparam /etc/nginx/dhparams.pem;
+ ssl_prefer_server_ciphers on;
+
+ location / {
+ proxy_pass https://127.0.0.1:19191;
+ proxy_http_version 1.1;
+ proxy_set_header Upgrade $http_upgrade;
+ proxy_set_header Connection "upgrade";
+ proxy_set_header Host $server_name;
+ proxy_redirect http:// https://;
+ proxy_buffering off;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
+ add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always;
+ }
+}