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.
21 lines
535 B
21 lines
535 B
server {
|
|
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_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
|
|
listen 80;
|
|
client_max_body_size 4G;
|
|
server_name c.skillbox.ru;
|
|
error_log /var/www/logs/codemy/flnginx-error.log;
|
|
keepalive_timeout 5;
|
|
|
|
root /var/www/projects/codemy/;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:5555;
|
|
}
|
|
} |