mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-07-28 20:05:39 +00:00
boring-nginx
matomo
nextcloud
nginx-php
privatebin
searx
unmaintained
boinc
cowrie
cryptpad
freshrss
ghost
isso
kippo-graph
libresonic
lutim
lychee
mastodon
mediawiki
nginx
Dockerfile
README.md
headers_params
nginx.conf
ngxpasswd
ngxproxy
proxy_params
run.sh
ssl_params
vhost_http.conf
vhost_https.conf
parsoid
pgbouncer
rainloop
reverse
rtorrent-flood
rutorrent
tor
LICENSE
README.md
15 lines
285 B
Plaintext
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;
|
|
}
|
|
}
|