mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-20 04:19:18 +00:00
12 lines
197 B
Plaintext
12 lines
197 B
Plaintext
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;
|
|
}
|
|
}
|