You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.9 KiB
63 lines
1.9 KiB
server {
|
|
listen 80;
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
|
|
server {
|
|
listen 443;
|
|
server_name 176.121.11.165 www.expomap.ru expomap.ru dev.expomap.ru;
|
|
ssl on;
|
|
ssl_certificate /etc/nginx/ssl/expomap.ru.crt;
|
|
ssl_certificate_key /etc/nginx/ssl/expomap.ru.key;
|
|
ssl_dhparam /etc/nginx/ssl/dhparam.pem;
|
|
ssl_session_timeout 24h;
|
|
ssl_session_cache shared:SSL:25m;
|
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
|
ssl_ciphers kEECDH+AES128:kEECDH:kEDH:-3DES:kRSA+AES128:kEDH+3DES:DES-CBC3-SHA:!RC4:!aNULL:!eNULL:!MD5:!EXPORT:!LOW:!SEED:!CAMELLIA:!IDEA:!PSK:!SRP:!SSLv2;
|
|
ssl_prefer_server_ciphers on;
|
|
add_header Strict-Transport-Security "max-age=31536000;";
|
|
add_header Content-Security-Policy-Report-Only "default-src https:; script-src https: 'unsafe-eval' 'unsafe-inline'; style-src https: 'unsafe-inline'; img-src https: data:; font-src https: data:";
|
|
|
|
gzip on;
|
|
gzip_disable "msie6";
|
|
gzip_vary on;
|
|
gzip_proxied any;
|
|
gzip_comp_level 6;
|
|
gzip_buffers 16 8k;
|
|
gzip_http_version 1.1;
|
|
gzip_static on;
|
|
gzip_types text/plain text/css application/json application/x-javascript application/javascript text/xml application/xml application/xml+rss text/javascript;
|
|
|
|
client_header_timeout 360s;
|
|
location / {
|
|
include uwsgi_params;
|
|
uwsgi_pass 127.0.0.1:49000;
|
|
}
|
|
|
|
location /4885b11a73674eb6d54593c1d7efd758821e5ee79b8132feecaba10560f0123a.html {
|
|
root /home/www/proj;
|
|
}
|
|
|
|
location /965E1EE7949FD639CA0124C8D8C57774.txt {
|
|
root /home/www/proj;
|
|
}
|
|
|
|
location /static {
|
|
access_log off;
|
|
expires max;
|
|
alias /home/www/proj/collected_static;
|
|
}
|
|
|
|
location /media {
|
|
access_log off;
|
|
expires max;
|
|
root /home/www/proj;
|
|
}
|
|
|
|
location /templates {
|
|
access_log off;
|
|
expires max;
|
|
alias /home/www/proj/collected_static/templates;
|
|
}
|
|
|
|
}
|
|
|