参考的Nginx配置:

server {
         listen       80;
         listen [::]:80;
         listen 443 ssl http2;
         listen [::]:443 ssl http2;
 
         server_name www.94cb.com 94cb.com m.94cb.com api.94cb.com cdn.94cb.com;
 
         ssl on;
         ssl_certificate_key  /etc/letsencrypt/live/www .94cb.com /privkey .pem;
         ssl_certificate  /etc/letsencrypt/live/www .94cb.com /fullchain .pem;
 
         set  $redirect_to_https 1;
         if  ($host =  'cdn.94cb.com' ) {
             set  $redirect_to_https 0;
         }
         if  ($scheme = https) {
             set  $redirect_to_https 0;
         }
         if  ($redirect_to_https = 1) {
             rewrite ^(.*) https: // $host$1 permanent;
        
 
         root  /www/web/carbon/public_html ;
         index  index.html index.php index.htm;
 
         include  /www/web/carbon/public_html/nginx .conf;
         # 开启SSL的WebSocket的配置主要是这部分,如果没使用SSL可以不需要配置这个
         location  /push  {
             # redirect all HTTP traffic to localhost:2000
             proxy_pass http: //127 .0.0.1:2000;
             proxy_set_header X-Real-IP $remote_addr;
             proxy_set_header Host $host;
             proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
 
             # WebSocket support
             proxy_http_version 1.1;
             proxy_set_header Upgrade $http_upgrade;
             proxy_set_header Connection $http_connection;
             
             # WebSocket timeout
             proxy_connect_timeout 7d;
             proxy_send_timeout 7d;
             proxy_read_timeout 7d;
         }
 
         location ~ \.php(.*)$ {
             fastcgi_pass  unix: /tmp/php-71-cgi .sock;
             fastcgi_index  index.php;
             fastcgi_param  SCRIPT_FILENAME  $DOCUMENT_ROOT$fastcgi_script_name;
             fastcgi_param PATH_INFO $2;
             include fcgi.conf;
         }
         #图片缓存7天
         location ~.*\.(gif|jpg|jpeg|png|bmp|swf|ico)$
         {
             expires 7d;  
         }
         #js css缓存1天
         location ~.*\.(js|css|html)$  
         {  
             expires 24h;  
         }
         access_log   /www/web_logs/94cb .com_access.log  wwwlogs;
         error_log   /www/web_logs/94cb .com_error.log;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值