Unverified Commit 476703ab authored by wojiushixiaobai's avatar wojiushixiaobai Committed by GitHub

Merge pull request #1570 from wojiushixiaobai/docs

[Update]更新文档
parents 64c61c6d 4a02d929
......@@ -184,6 +184,22 @@ FAQ
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
access_log off; # 不记录到 log
}
location /guacamole/ {
proxy_pass http://你后端的服务器url地址/guacamole/;
proxy_buffering off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
client_max_body_size 100m; # Windows 文件上传大小限制
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
access_log off; # 不记录到 log
}
...
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment