mirror of
https://github.com/cupcakearmy/docker-static.git
synced 2024-12-22 08:16:30 +00:00
11 lines
159 B
Plaintext
11 lines
159 B
Plaintext
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
location / {
|
|
root /srv;
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html?$args;
|
|
}
|
|
}
|