safetwitch/docker/nginx.conf
2024-02-19 12:03:22 -05:00

17 lines
No EOL
275 B
Nginx Configuration File

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