server { listen 80; listen [::]:80; server_name 47.116.16.57 91tvikun.icu www.91tvikun.icu; client_max_body_size 12m; root /var/www/campus-express-site; index index.html; location / { try_files $uri $uri/ =404; } location /api/ { proxy_pass http://127.0.0.1:3000; proxy_http_version 1.1; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } location /static/ { proxy_pass http://127.0.0.1:3000; proxy_http_version 1.1; proxy_set_header Host $host; } location /uploads/ { proxy_pass http://127.0.0.1:3000; proxy_http_version 1.1; proxy_set_header Host $host; } location /source/ { alias /var/www/campus-express-miniapp/; autoindex on; autoindex_exact_size off; autoindex_localtime on; } }