1
0
mirror of https://github.com/hoellen/dockerfiles.git synced 2025-07-25 18:35:39 +00:00
Files
boinc
boring-nginx
cowrie
ghost
isso
lutim
lychee
nextcloud
nginx
Dockerfile
README.md
headers_params
nginx.conf
ngxpasswd
ngxproxy
proxy_params
run.sh
ssl_params
vhost_http.conf
vhost_https.conf
piwik
privatebin
rainloop
rtorrent-flood
rutorrent
searx
subsonic
tor
LICENSE
dockerfiles/nginx/vhost_http.conf

15 lines
285 B
Plaintext
Raw Normal View History

2016-06-11 11:51:13 +02:00
server {
listen 8000;
server_name <DOMAIN>;
#client_max_body_size <MAX_BODY_SIZE>M;
#auth_basic "Who's this?";
#auth_basic_user_file /passwds/<NAME>.htpasswd;
location <WEBROOT> {
proxy_pass http://<CONTAINER>:<PORT>;
include /etc/nginx/conf/proxy_params;
}
}