server { listen 80; listen [::]:80; server_name localhost; #access_log /var/log/nginx/host.access.log main; location /show { alias /mnt/app/dist; index index.html; } location /baidu { # 配置请求头主要用于websocket proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $connection_upgrade; # 重定向地址 rewrite ^/baidu/(.*) /$1 break; proxy_pass http://www.baidu.com; client_max_body_size 1000m; } }