1
0
Fork 0
forked from exozyme/nginx
nginx/safetwitch.conf

15 lines
244 B
Text
Raw Permalink Normal View History

2023-06-07 15:49:38 +00:00
server {
listen 443 ssl;
listen [::]:443 ssl;
2023-06-07 15:49:38 +00:00
server_name safetwitch.exozy.me;
include conf.d/ssl;
root /srv/http/pages/safetwitch;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
2023-06-12 00:12:49 +00:00
}