nginx主配置文件
![](/upload/ad_content/xuanchuantu-8.jpg)
在忻州等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供网站建设、
成都网站制作 网站设计制作
定制网站建设,公司网站建设,企业网站建设,
品牌网站建设,
网络营销推广,
外贸网站建设,忻州网站建设费用合理。worker_processes 1;
error_log /home/data/logs/nginx/error.log;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
worker_rlimit_nofile 65535;
events {
use epoll;
worker_connections 65535;
}
http {
include mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$http_host" "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for '
'"$upstream_addr" "$upstream_status" "$upstream_response_time" "$request_time"';
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
access_log /home/data/logs/nginx/access.log main;
server_tokens off;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#--------------h2----------------
upstream plone {
server 172.16.1.24:8080; #重点
}
#gzip on;
server_name_in_redirect off;
include vhosts/*.conf; #重点
}
nginx vhosts里面的配置文件
[root@plone vhosts]# cat plone.conf
server {
listen 80;
server_name plone.sense.com.cn;
access_log /home/data/logs/nginx/plone_access.log main;
# rewrite ^(.*)$ https://$host$1 permanent;
location / {
proxy_set_header X-real-ip $remote_addr;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Scheme $scheme;
proxy_pass #重点
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
# server {
# listen 443 ssl;
# server_name console.senseyun.com;
# access_log /home/data/logs/nginx/ssl.console_senseyun.log main;
#
# ssl_certificate /opt/CA/senseyun.com_bundle.crt;
# ssl_certificate_key /opt/CA/senseyun.com.key;
#
#
# location ~^/ {
# proxy_set_header X-real-ip $remote_addr;
# proxy_set_header Host $http_host;
# proxy_set_header X-Forwarded-Scheme $scheme;
# proxy_pass http://console;
# }
#
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# root html;
# }
# }
另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
分享名称:nginx对后端的目录进行反向代理-创新互联
文章源于:
http://shouzuofang.com/article/jcpsi.html