15 lines
258 B
Plaintext
15 lines
258 B
Plaintext
server {
|
|
listen 8000;
|
|
listen [::]:8000;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
}
|
|
|
|
location ~ ^/[@_]/ {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|