15 lines
277 B
Plaintext
15 lines
277 B
Plaintext
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
location /media/ {
|
|
alias /media/;
|
|
expires 30d;
|
|
access_log off;
|
|
}
|
|
} |