# from gis project server { listen 80; listen [::]:80; server_name localhost; set $root '/usr/share/nginx/html'; root $root; location / { index index.html index.htm; try_files $uri $uri/ /gis/index.html; add_header Access-Control-Allow-Origin *; autoindex off; #开启nginx目录浏览功能 autoindex_exact_size off; #文件大小从KB开始显示 autoindex_localtime on; #显示文件修改时间为服务器本地时间 } location /api { proxy_pass http://railwayAdmin:2021; proxy_read_timeout 300s; proxy_set_header Host railway.iamsee.com; proxy_set_header X-Real-IP $remote_addr; # proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header x-forwarded-for $remote_addr; proxy_set_header REMOTE-HOST $remote_addr; add_header X-Cache $upstream_cache_status; #Set Nginx Cache add_header Cache-Control no-cache; if ( $uri ~* "/profile.*/(.*)" ){ add_header Access-Control-Expose-Headers "Content-Disposition"; add_header Content-Disposition "attachment;filename=$1"; } } location ~ /.well-known { allow all; autoindex on; autoindex_exact_size off; autoindex_localtime on; } #location ~ /\.ht { # deny all; #} }