initial
This commit is contained in:
2
nginx/Dockerfile
Normal file
2
nginx/Dockerfile
Normal file
@@ -0,0 +1,2 @@
|
||||
FROM nginx
|
||||
COPY nginx.conf /etc/nginx/nginx.conf
|
11
nginx/nginx.conf
Normal file
11
nginx/nginx.conf
Normal file
@@ -0,0 +1,11 @@
|
||||
events {}
|
||||
|
||||
http {
|
||||
client_max_body_size 150m;
|
||||
server {
|
||||
listen 1238;
|
||||
location / {
|
||||
proxy_pass http://app:8000/;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user