12345678910111213141516171819202122232425262728293031323334 |
- worker_processes 1;
- events {
- worker_connections 1024;
- }
- http {
- include mime.types;
- default_type application/octet-stream;
- access_log logs/access.log;
- sendfile on;
- keepalive_timeout 65;
- server {
- listen 9360;
- server_name privacy_retrieval_frontend;
- location / {
- root /usr/share/nginx/html;
- index index.html index.htm;
- try_files $uri $uri/ /index,html;
- }
-
- location /api {
- proxy_pass http://172.42.0.12:9361/api;
- proxy_read_timeout 120s;
- proxy_connect_timeout 180s;
- proxy_send_timeout 180s;
- client_max_body_size 200m;
- }
- }
- }
|