add static site
This commit is contained in:
parent
0bfb4a99cd
commit
4a123b6f4a
4
deploy-static.yml
Normal file
4
deploy-static.yml
Normal file
@ -0,0 +1,4 @@
|
||||
- name: static setup
|
||||
hosts: static
|
||||
roles:
|
||||
- static
|
@ -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
|
||||
|
8
roles/static/tasks/main.yml
Normal file
8
roles/static/tasks/main.yml
Normal file
@ -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
|
13
roles/webservers/files/levi/http.static.simponic.xyz.conf
Normal file
13
roles/webservers/files/levi/http.static.simponic.xyz.conf
Normal file
@ -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;
|
||||
}
|
||||
}
|
25
roles/webservers/files/levi/https.static.simponic.xyz.conf
Normal file
25
roles/webservers/files/levi/https.static.simponic.xyz.conf
Normal file
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user