mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2024-12-22 05:12:57 -05:00
17 lines
No EOL
275 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
} |