dockerfiles/boring-nginx/vhost_http.conf

15 lines
285 B
Plaintext
Raw Normal View History

2016-05-30 00:47:27 +02:00
server {
listen 8000;
server_name <DOMAIN>;
2016-05-30 18:10:49 +02:00
#client_max_body_size <MAX_BODY_SIZE>M;
#auth_basic "Who's this?";
#auth_basic_user_file /passwds/<NAME>.htpasswd;
2016-05-30 00:47:27 +02:00
2016-05-30 14:38:08 +02:00
location <WEBROOT> {
2016-05-30 00:47:27 +02:00
proxy_pass http://<CONTAINER>:<PORT>;
include /etc/nginx/conf/proxy_params;
}
}