mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-07-26 19:05:40 +00:00
boring-nginx
cowrie
cryptpad
freshrss
ghost
isso
kippo-graph
libresonic
lychee
mastodon
mediawiki
nextcloud
nginx-php
parsoid
pgbouncer
piwik
privatebin
reverse
rtorrent-flood
searx
unmaintained
boinc
lutim
nginx
rainloop
rutorrent
rootfs
etc
nginx
conf.d
nginx.conf
php7
supervisor.d
home
sites
usr
var
Dockerfile
README.md
tor
LICENSE
55 lines
1.1 KiB
Nginx Configuration File
55 lines
1.1 KiB
Nginx Configuration File
user torrent;
|
|
worker_processes auto;
|
|
pid /var/run/nginx.pid;
|
|
daemon off;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
use epoll;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
access_log /var/log/nginx/access.log combined;
|
|
error_log /var/log/nginx/error.log error;
|
|
|
|
fastcgi_temp_path /tmp/fastcgi 1 2;
|
|
scgi_temp_path /tmp/scgi 1 2;
|
|
client_body_temp_path /tmp/client_body 1 2;
|
|
|
|
sendfile on;
|
|
keepalive_timeout 15;
|
|
keepalive_disable msie6;
|
|
keepalive_requests 100;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
server_tokens off;
|
|
|
|
gzip on;
|
|
gzip_comp_level 5;
|
|
gzip_min_length 512;
|
|
gzip_buffers 4 8k;
|
|
gzip_proxied any;
|
|
gzip_vary on;
|
|
gzip_disable "msie6";
|
|
gzip_types
|
|
text/css
|
|
text/javascript
|
|
text/xml
|
|
text/plain
|
|
text/x-component
|
|
application/javascript
|
|
application/x-javascript
|
|
application/json
|
|
application/xml
|
|
application/rss+xml
|
|
application/vnd.ms-fontobject
|
|
font/truetype
|
|
font/opentype
|
|
image/svg+xml;
|
|
|
|
include /sites/*.conf;
|
|
}
|