Nginx参数有很多经典的语句,其中upstream.conf 配置文件就是一个很好的例子,下面我们就看看如何才能好的使用这些语句呢?下面的文章就会对你有很好的帮助,尤其是在了解Nginx参数上的问题。
- upstream.conf
- upstream bbs.linuxtone.com {
- server 192.168.1.4:8099;
- }
Nginx参数站点配置文件
- bbs.linuxtone.conf
- server
- {
- listen 80;
- server_name bbs.linuxtone.conf;
- charset GB2312;
- index index.html index.htm;
- root /date/wwwroot/linuxtone/;
- location ~ ^/NginxStatus/ {
- stub_status on;
- access_log off;
- }
- location / {
- root /date/wwwroot/linuxtone/;
- proxy_redirect off ;
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header REMOTE-HOST $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- client_max_body_size 50m;
- client_body_buffer_size 256k;
- proxy_connect_timeout 30;
- proxy_send_timeout 30;
- proxy_read_timeout 60;
- proxy_buffer_size 256k;
- proxy_buffers 4 256k;
- proxy_busy_buffers_size 256k;
- proxy_temp_file_write_size 256k;
- proxy_next_upstream error timeout invalid_header http_500 http_503 http_404;
- proxy_max_temp_file_size 128m;
- proxy_pass http://bbs.linuxtone.com;
- }
Nginx参数都有所调整.目的是解决代理过程中出现的一些502 499错误
- #Add expires header for static content
- location ~* \.(jpg|jpeg|gif|png|swf)$ {
- if (-f $request_filename) {
- root /date/wwwroot/linuxtone/;
- expires 1d;
- break;
- }
- }
- log_format access '$remote_addr - $remote_user [$time_local] "$request" '
- '$status $body_bytes_sent "$http_referer" '
- '"$http_user_agent" $http_x_forwarded_for';
- access_log /exp/Nginxlogs/bbs.linuxtone_access.log access;
- }
以上就是对Nginx参数的详细介绍,希望大家有所帮助。
【编辑推荐】
- Nginx默认虚拟主机如何在server中添加
- Nginx配置虚拟主机具体的代码配置
- Nginx配置文件实现AWStats静态页面
- Nginx 禁止IP访问的代码编写教程
- Nginx配置文件如何验证是否准确