1
0
mirror of https://github.com/hoellen/dockerfiles.git synced 2025-07-27 11:25:41 +00:00
Files
boring-nginx
rootfs
etc
nginx
conf
headers_params
nginx.conf
proxy_params
ssl_params
vhost_http.conf
vhost_https.conf
usr
Dockerfile
README.md
cowrie
cryptpad
freshrss
ghost
isso
kippo-graph
libresonic
lychee
mastodon
mediawiki
nextcloud
nginx-php
parsoid
pgbouncer
piwik
privatebin
reverse
rtorrent-flood
searx
unmaintained
LICENSE
dockerfiles/boring-nginx/rootfs/etc/nginx/conf/vhost_http.conf
2017-08-08 04:54:27 +02:00

15 lines
285 B
Plaintext

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;
}
}