0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2024-12-22 13:22:58 -05:00
safetwitch/docker/nginx.conf

17 lines
283 B
Nginx Configuration File
Raw Normal View History

2023-03-26 18:11:06 -05:00
events {}
http {
include mime.types;
server {
2023-12-13 09:46:16 -05:00
listen 8280;
2023-04-11 20:01:00 -05:00
access_log off;
error_log off;
2023-03-26 18:11:06 -05:00
location / {
root /app;
2023-03-26 18:11:06 -05:00
index index.html;
try_files $uri $uri/ /index.html;
}
}
}