0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2024-12-22 13:22:58 -05:00
safetwitch/docker/nginx.conf
2024-02-12 22:11:13 -05: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;
}
}
}