千家信息网

如何解决Nginx参数站点配置上的问题

发表于:2024-11-14 作者:千家信息网编辑
千家信息网最后更新 2024年11月14日,如何解决Nginx参数站点配置上的问题,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。Nginx参数有很多经典的语句,其中upstre
千家信息网最后更新 2024年11月14日如何解决Nginx参数站点配置上的问题

如何解决Nginx参数站点配置上的问题,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

Nginx参数有很多经典的语句,其中upstream.conf 配置文件就是一个很好的例子,下面我们就看看如何才能好的使用这些语句呢?下面的文章就会对你有很好的帮助,尤其是在了解Nginx参数上的问题。

upstream.conf  upstream bbs.linuxtone.com {  server 192.168.1.4:8099;  }

Nginx参数站点配置文件

  1. bbs.linuxtone.conf

  2. server

  3. {

  4. listen 80;

  5. server_name bbs.linuxtone.conf;

  6. charset GB2312;

  7. index index.html index.htm;

  8. root /date/wwwroot/linuxtone/;

  9. location ~ ^/NginxStatus/ {

  10. stub_status on;

  11. access_log off;

  12. }

  13. location / {

  14. root /date/wwwroot/linuxtone/;

  15. proxy_redirect off ;

  16. proxy_set_header Host $host;

  17. proxy_set_header X-Real-IP $remote_addr;

  18. proxy_set_header REMOTE-HOST $remote_addr;

  19. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

  20. client_max_body_size 50m;

  21. client_body_buffer_size 256k;

  22. proxy_connect_timeout 30;

  23. proxy_send_timeout 30;

  24. proxy_read_timeout 60;

  25. proxy_buffer_size 256k;

  26. proxy_buffers 4 256k;

  27. proxy_busy_buffers_size 256k;

  28. proxy_temp_file_write_size 256k;

  29. proxy_next_upstream error timeout invalid_header http_500 http_503 http_404;

  30. proxy_max_temp_file_size 128m;

  31. proxy_pass http://bbs.linuxtone.com;

  32. }


Nginx参数都有所调整.目的是解决代理过程中出现的一些502 499错误

  1. #Add expires header for static content

  2. location ~* \.(jpg|jpeg|gif|png|swf)$ {

  3. if (-f $request_filename) {

  4. root /date/wwwroot/linuxtone/;

  5. expires 1d;

  6. break;

  7. }

  8. }

  9. log_format access '$remote_addr - $remote_user [$time_local] "$request" '

  10. '$status $body_bytes_sent "$http_referer" '

  11. '"$http_user_agent" $http_x_forwarded_for';

  12. access_log /exp/Nginxlogs/bbs.linuxtone_access.log access;

  13. }

关于如何解决Nginx参数站点配置上的问题问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注行业资讯频道了解更多相关知识。

0