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

17 lines
275 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;
2024-02-19 12:03:22 -05:00
access_log /dev/null;
error_log /dev/null;
2023-04-11 20:01:00 -05:00
2023-03-26 18:11:06 -05:00
2024-02-19 12:03:22 -05:00
location / {
root /app;
index index.html;
try_files $uri $uri/ /index.html;
}
2023-03-26 18:11:06 -05:00
}
}