mirror of
https://github.com/solero/wand.git
synced 2024-11-13 00:38:20 +00:00
15 lines
231 B
Plaintext
15 lines
231 B
Plaintext
server {
|
|
listen 80 default_server;
|
|
server_name _;
|
|
|
|
location /play {
|
|
root /usr/share/nginx/legacy/;
|
|
index index.html index.htm;
|
|
}
|
|
|
|
location /media {
|
|
root /usr/share/nginx/legacy/;
|
|
index index.html index.htm;
|
|
}
|
|
}
|