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.
25 lines
813 B
25 lines
813 B
user www-data;
|
|
worker_processes auto;
|
|
pid /var/run/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
gzip on;
|
|
gzip_proxied expired no-cache no-store private auth;
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml
|
|
application/xml+rss text/javascript image/svg+xml application/vnd.ms-fontobject
|
|
application/x-woff;
|
|
|
|
# Use webp where supported
|
|
map $http_accept $webp_suffix {
|
|
default "";
|
|
"~*webp" ".webp";
|
|
}
|
|
|
|
include /etc/nginx/sites-enabled/*;
|
|
client_max_body_size 10M;
|
|
|
|
} |