2019-08-25 14:17:20 -04:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
listen [::]:80;
|
|
|
|
server_name seaturtle.pw www.seaturtle.pw;
|
|
|
|
|
|
|
|
return 301 https://seaturtle.pw$request_uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 443 ssl;
|
|
|
|
listen [::]:443 ssl;
|
|
|
|
server_name www.seaturtle.pw;
|
|
|
|
|
|
|
|
# ssl conf
|
|
|
|
include /config/nginx/ssl.conf;
|
|
|
|
|
|
|
|
return 301 https://seaturtle.pw$request_uri;
|
|
|
|
}
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen 443 ssl;
|
|
|
|
listen [::]:443 ssl;
|
|
|
|
server_name seaturtle.pw;
|
|
|
|
|
|
|
|
# ssl conf
|
|
|
|
include /config/nginx/ssl.conf;
|
|
|
|
|
|
|
|
client_max_body_size 1M;
|
|
|
|
|
2019-08-25 23:24:08 -04:00
|
|
|
# Proxy main site
|
2019-08-25 14:17:20 -04:00
|
|
|
location / {
|
|
|
|
proxy_pass https://paulwalko.github.io;
|
|
|
|
}
|
2019-08-31 18:51:01 -04:00
|
|
|
|
2019-09-01 21:31:26 -04:00
|
|
|
# Proxy syncthing
|
|
|
|
location /syncthing/ {
|
|
|
|
auth_basic "not today buddy";
|
|
|
|
auth_basic_user_file /config/nginx/syncthing-htpasswd;
|
|
|
|
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 $scheme;
|
|
|
|
proxy_pass http://syncthing:8384/;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Serve misc files
|
2019-08-31 18:51:01 -04:00
|
|
|
location /files {
|
|
|
|
alias /files-docker;
|
|
|
|
autoindex on;
|
|
|
|
}
|
|
|
|
|
2019-09-01 21:31:26 -04:00
|
|
|
# Serve syncthing files
|
2019-08-31 18:51:01 -04:00
|
|
|
location /sync {
|
|
|
|
auth_basic "nope definitely not today buddy";
|
|
|
|
auth_basic_user_file /config/nginx/sync-htpasswd;
|
|
|
|
alias /sync-docker;
|
|
|
|
autoindex on;
|
|
|
|
}
|
2019-08-25 14:17:20 -04:00
|
|
|
}
|