mirror of
https://github.com/Django-LiveView/docs.git
synced 2024-11-10 02:45:42 +01:00
20 lines
347 B
Nginx Configuration File
20 lines
347 B
Nginx Configuration File
events {}
|
|
|
|
http {
|
|
server {
|
|
listen 80 default_server;
|
|
server_name _;
|
|
|
|
location / {
|
|
try_files $uri $uri/ $uri.html =404;
|
|
}
|
|
|
|
location /img {
|
|
include /etc/nginx/mime.types;
|
|
alias /var/www/html/img;
|
|
}
|
|
|
|
location = /favicon.ico { access_log off; log_not_found off; }
|
|
}
|
|
}
|