mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-12-01 02:27:24 +01:00
32 lines
955 B
Nginx Configuration File
32 lines
955 B
Nginx Configuration File
|
# This and proxy.conf are based on
|
||
|
# https://github.com/dead-guru/devichan/blob/master/nginx/nginx.conf
|
||
|
|
||
|
user leftypol;
|
||
|
worker_processes 4;
|
||
|
|
||
|
error_log /dev/stdout warn;
|
||
|
pid /var/run/nginx.pid;
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
http {
|
||
|
include /etc/nginx/mime.types;
|
||
|
default_type application/octet-stream;
|
||
|
#access_log /var/log/nginx/access.log;
|
||
|
# Switch logging to console out to view via Docker
|
||
|
access_log /dev/stdout;
|
||
|
error_log /dev/stdout warn;
|
||
|
sendfile on;
|
||
|
keepalive_timeout 5;
|
||
|
|
||
|
gzip on;
|
||
|
gzip_http_version 1.0;
|
||
|
gzip_vary on;
|
||
|
gzip_comp_level 6;
|
||
|
gzip_types text/xml text/plain text/css application/xhtml+xml application/xml application/rss+xml application/atom_xml application/x-javascript application/x-httpd-php;
|
||
|
gzip_disable "MSIE [1-6]\.";
|
||
|
|
||
|
|
||
|
include /etc/nginx/conf.d/*.conf;
|
||
|
include /etc/nginx/sites-available/*.conf;
|
||
|
}
|