mirror of
https://codeberg.org/dragongoose/safetwitch.git
synced 2024-11-02 14:14:00 +00:00
17 lines
No EOL
281 B
Nginx Configuration File
17 lines
No EOL
281 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
} |