1
0
mirror of https://github.com/hoellen/dockerfiles.git synced 2025-08-02 06:15:39 +00:00
Files
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
home
sites
rutorrent.conf
usr
var
Dockerfile
README.md
tor
LICENSE
README.md
dockerfiles/unmaintained/rutorrent/rootfs/sites/rutorrent.conf

49 lines
881 B
Plaintext
Raw Normal View History

2017-01-16 22:13:29 +01:00
server {
listen 80 default_server;
server_name _;
charset utf-8;
index index.html index.php;
client_max_body_size 10M;
access_log /var/log/nginx/rutorrent-access.log combined;
error_log /var/log/nginx/rutorrent-error.log error;
error_page 500 502 503 504 /50x.html;
location = /50x.html { root /usr/share/nginx/html; }
root /var/www;
location = /favicon.ico {
access_log off;
log_not_found off;
}
location ^~ <webroot> {
root /var/www<folder>;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
location ~ /\.svn {
deny all;
}
location ~ /\.ht {
deny all;
}
}
location /RPC {
include scgi_params;
scgi_pass 127.0.0.1:5000;
}
location ^~ <folder>/conf/ {
deny all;
}
location ^~ <folder>/share/ {
deny all;
}
}