TeamCity,nginx和Websockets – 501错误

前端之家收集整理的这篇文章主要介绍了TeamCity,nginx和Websockets – 501错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我目前正在使用Nginx反向代理设置TeamCity,但我的浏览器出错了.错误如下:

  1. WebSocket connection to 'ws://ci.example.net/app/subscriptions?X-Atmosphere-tracking-id=0&X-Atmosphere-Framework=2.2.7-javascript&X-Atmosphere-Transport=websocket&X-Atmosphere-TrackMessageSize=true&X-atmo-protocol=true&browserLocationHost=http%3A%2F%2Fci.example.net' Failed: Error during WebSocket handshake: Unexpected response code: 501

我查看了Nginx错误日志和TeamCity错误日志,两者都显示为空.

我的Nginx配置如下:

  1. server {
  2. listen 80;
  3. server_name ci.example.net;
  4. error_log /var/log/Nginx/error.log;
  5. proxy_intercept_errors on;
  6. error_page 401 403 404 /404.html;
  7. location / {
  8. proxy_set_header Host $host;
  9. proxy_set_header X-Real-IP $remote_addr;
  10. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  11. proxy_set_header X-Forwarded-Proto $scheme;
  12. proxy_pass http://127.0.0.1:8111;
  13. proxy_read_timeout 90;
  14. proxy_redirect http://127.0.0.1:8111 http://ci.fluxmc.net;
  15. }
  16. }
  17. #Websocket configuration
  18. map $http_upgrade $connection_upgrade {
  19. default upgrade;
  20. '' '';
  21. }
  22. server {
  23. listen 400;
  24. server_name ci.example.net;
  25. error_log /var/log/Nginx/error.log;
  26. proxy_intercept_errors on;
  27. location /tc {
  28. proxy_pass http://localhost:8111/tc;
  29. proxy_http_version 1.1;
  30. proxy_set_header X-Forwarded-For $remote_addr;
  31. proxy_set_header Host $server_name:$server_port;
  32. proxy_set_header Upgrade $http_upgrade;
  33. proxy_set_header Connection $connection_upgrade;
  34. }
  35. }

我真的不确定从哪里开始,我几乎完全遵循了documentation for TeamCity.如果您能提供任何帮助,我将不胜感激!

最佳答案
TeamCity的文档使a couple of assumptions无法满足您的要求:

TeamCity server is installed at URL: 07001

It is visible to the outside world as URL: 07002

在您的情况下,TeamCity对外界可见URL:http://ci.example.net.

这会改变您的Nginx配置,如下所示:

  1. server {
  2. listen 80;
  3. server_name ci.example.net;
  4. error_log /var/log/Nginx/error.log;
  5. proxy_intercept_errors on;
  6. error_page 401 403 404 /404.html;
  7. location / {
  8. proxy_set_header Host $host;
  9. proxy_set_header X-Real-IP $remote_addr;
  10. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  11. proxy_set_header X-Forwarded-Proto $scheme;
  12. proxy_pass http://127.0.0.1:8111;
  13. proxy_read_timeout 90;
  14. proxy_redirect http://127.0.0.1:8111 http://ci.fluxmc.net;
  15. proxy_http_version 1.1;
  16. proxy_set_header Upgrade $http_upgrade;
  17. proxy_set_header Connection $connection_upgrade;
  18. }
  19. }
  20. #Websocket configuration
  21. map $http_upgrade $connection_upgrade {
  22. default upgrade;
  23. '' '';
  24. }

对我来说,这足以让TeamCity的websocket连接工作.

猜你在找的Nginx相关文章