forked from exozyme/nginx
14 lines
No EOL
255 B
Text
14 lines
No EOL
255 B
Text
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;
|
|
}
|
|
} |