boring-nginx: add ngxproxy utility

This commit is contained in:
Wonderfall
2016-05-30 00:47:27 +02:00
parent f7ecf4d593
commit fd25523a4d
3 changed files with 90 additions and 0 deletions

View File

@ -0,0 +1,11 @@
server {
listen 8000;
server_name <DOMAIN>;
#client_max_body_size <MAX_BODY_SIZE>M;
location / {
proxy_pass http://<CONTAINER>:<PORT>;
include /etc/nginx/conf/proxy_params;
}
}