platform/nginx/nginx.conf
Administrator 9e7fc7b4c1 initial
2023-09-23 16:13:11 +03:00

12 lines
168 B
Nginx Configuration File

events {}
http {
client_max_body_size 150m;
server {
listen 1238;
location / {
proxy_pass http://app:8000/;
}
}
}