add nginx image

This commit is contained in:
Wonderfall
2016-06-11 11:51:13 +02:00
parent 03a20d45b1
commit 6d4faf4327
11 changed files with 528 additions and 0 deletions

14
nginx/vhost_http.conf Normal file
View File

@ -0,0 +1,14 @@
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;
}
}