0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2025-01-03 03:10:04 -05:00

Create default nginx.conf again

This commit is contained in:
xbdm 2023-07-15 16:48:37 +00:00
parent eef2969914
commit 6383a202ef

17
nginx.conf Normal file
View file

@ -0,0 +1,17 @@
events {}
http {
include mime.types;
server {
listen 80;
access_log off;
error_log off;
location / {
root /app;
index index.html;
try_files $uri $uri/ /index.html;
}
}
}