summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-01-12 21:26:09 -0500
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-01-12 21:26:09 -0500
commit4a123b6f4a2ece850175cc4402fc30326ae17075 (patch)
treeff80a0dff85a5ba53f977da8014da13adeffd351
parent0bfb4a99cd606144244a3f07913997ecab4971bc (diff)
downloadoldinfra-4a123b6f4a2ece850175cc4402fc30326ae17075.tar.gz
oldinfra-4a123b6f4a2ece850175cc4402fc30326ae17075.zip
add static site
-rw-r--r--deploy-static.yml4
-rw-r--r--inventory3
-rw-r--r--roles/static/tasks/main.yml8
-rw-r--r--roles/webservers/files/levi/http.static.simponic.xyz.conf13
-rw-r--r--roles/webservers/files/levi/https.static.simponic.xyz.conf25
5 files changed, 53 insertions, 0 deletions
diff --git a/deploy-static.yml b/deploy-static.yml
new file mode 100644
index 0000000..a29a37c
--- /dev/null
+++ b/deploy-static.yml
@@ -0,0 +1,4 @@
+- name: static setup
+ hosts: static
+ roles:
+ - static
diff --git a/inventory b/inventory
index f1ce37e..17e7e07 100644
--- a/inventory
+++ b/inventory
@@ -51,3 +51,6 @@ europa ansible_user=root ansible_connection=ssh
[gitea]
nijika ansible_user=root ansible_connection=ssh
+
+[static]
+levi ansible_user=root ansible_connection=ssh
diff --git a/roles/static/tasks/main.yml b/roles/static/tasks/main.yml
new file mode 100644
index 0000000..3a6c49f
--- /dev/null
+++ b/roles/static/tasks/main.yml
@@ -0,0 +1,8 @@
+---
+
+- name: clone static repo
+ git:
+ repo: https://git.simponic.xyz/simponic/static.simponic.xyz.git
+ dest: /var/www/html/static.simponic.xyz
+ clone: yes
+ update: yes
diff --git a/roles/webservers/files/levi/http.static.simponic.xyz.conf b/roles/webservers/files/levi/http.static.simponic.xyz.conf
new file mode 100644
index 0000000..89b725f
--- /dev/null
+++ b/roles/webservers/files/levi/http.static.simponic.xyz.conf
@@ -0,0 +1,13 @@
+server {
+ listen 80;
+ server_name static.simponic.xyz;
+
+ location /.well-known/acme-challenge {
+ root /var/www/letsencrypt;
+ try_files $uri $uri/ =404;
+ }
+
+ location / {
+ rewrite ^ https://static.simponic.xyz$request_uri? permanent;
+ }
+}
diff --git a/roles/webservers/files/levi/https.static.simponic.xyz.conf b/roles/webservers/files/levi/https.static.simponic.xyz.conf
new file mode 100644
index 0000000..6ac8806
--- /dev/null
+++ b/roles/webservers/files/levi/https.static.simponic.xyz.conf
@@ -0,0 +1,25 @@
+server {
+ listen 443 ssl;
+ server_name static.simponic.xyz;
+
+ ssl_certificate /etc/letsencrypt/live/static.simponic.xyz/fullchain.pem;
+ ssl_certificate_key /etc/letsencrypt/live/static.simponic.xyz/privkey.pem;
+ ssl_trusted_certificate /etc/letsencrypt/live/static.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;
+
+ root /var/www/html/static.simponic.xyz;
+
+ location / {
+ try_files $uri $uri/ $uri.html =404;
+ }
+}