dockerfiles/boring-nginx/vhost_http.conf

12 lines
196 B
Plaintext
Raw Normal View History

2016-05-30 00:47:27 +02:00
server {
listen 8000;
server_name <DOMAIN>;
2016-05-30 13:36:53 +02:00
client_max_body_size <MAX_BODY_SIZE>M;
2016-05-30 00:47:27 +02:00
location / {
proxy_pass http://<CONTAINER>:<PORT>;
include /etc/nginx/conf/proxy_params;
}
}