1
0
Fork 0
forked from exozyme/nginx

Merge pull request 'Add safetwitch.conf' (#9) from dragongoose/nginx:main into main

Reviewed-on: exozyme/nginx#9
This commit is contained in:
Anthony Wang 2023-06-07 16:11:56 +00:00
commit 0f29483002
Signed by: exogit
GPG key ID: 1DDC6BC38786C595

14
safetwitch.conf Normal file
View file

@ -0,0 +1,14 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name safetwitch.exozy.me;
include conf.d/ssl;
root /srv/http/pages/safetwitch;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}