mirror of
https://git.v0l.io/Kieran/dtan.git
synced 2025-01-07 09:10:07 +00:00
10 lines
186 B
Nginx Configuration File
10 lines
186 B
Nginx Configuration File
server {
|
|
listen 8080 default_server;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html =404;
|
|
}
|
|
} |