51 lines
854 B
Nginx Configuration File
51 lines
854 B
Nginx Configuration File
worker_processes auto;
|
|
error_log off;
|
|
user weewx;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
server_tokens off;
|
|
access_log off;
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
|
|
gzip on;
|
|
gzip_vary on;
|
|
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml;
|
|
|
|
map $http_x_forwarded_proto $pass_scheme {
|
|
default $http_x_forwarded_proto;
|
|
'' $scheme;
|
|
}
|
|
|
|
map $http_x_forwarded_host $pass_host {
|
|
default $http_x_forwarded_host;
|
|
'' $host;
|
|
}
|
|
|
|
server {
|
|
listen 8000;
|
|
|
|
root /data/html/wdc;
|
|
index index.html;
|
|
|
|
location ~* \.html$ {
|
|
expires modified 120s;
|
|
}
|
|
|
|
location ~* \.(js|css)$ {
|
|
expires modified 1h;
|
|
}
|
|
|
|
location ~ ^/dwd/(icons|warn_icons)/ {
|
|
root /home/weewx/public_html;
|
|
expires 1h;
|
|
}
|
|
}
|
|
}
|