mirror of
https://github.com/Django-LiveView/docs.git
synced 2024-11-10 02:45:42 +01:00
16 lines
298 B
Nginx Configuration File
16 lines
298 B
Nginx Configuration File
events {}
|
|
|
|
http {
|
|
server {
|
|
listen 80 default_server;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
include /etc/nginx/mime.types;
|
|
index index.html;
|
|
gzip on;
|
|
gzip_disable "msie6";
|
|
|
|
location = /favicon.ico { access_log off; log_not_found off; }
|
|
}
|
|
}
|