safetwitch/nginx.conf
2023-12-13 14:46:16 +00:00

17 lines
No EOL
283 B
Nginx Configuration File

events {}
http {
include mime.types;
server {
listen 8280;
access_log off;
error_log off;
location / {
root /app;
index index.html;
try_files $uri $uri/ /index.html;
}
}
}