百分百源码网-让建站变得如此简单! 登录 注册 签到领金币!

主页 | 如何升级VIP | TAG标签

当前位置: 主页>网站教程>服务器> Nginx配置SSL(https)虚拟主机的例子
分享文章到:

Nginx配置SSL(https)虚拟主机的例子

发布时间:01/15 来源: 浏览: 关键词:
配置SSL是以后的一个走向了,现在搜索引擎百度也换成了https地址了,这样可以防止很多劫持问题了,下面我们来看看在Nginx配置SSL(https)虚拟主机的例子


Nginx 的配置文件 111cn.net.conf:

server {
   listen 80;
   server_name 111cn.net;
   rewrite ^(.*)$ https://$host$1 permanent;
}
server {
   listen 443;
   server_name 111cn.net;
   ssl on;
   ssl_certificate     /www/cert/111cn.net_bundle.crt;
   ssl_certificate_key /www/cert/111cn.net.key;

   root /www/111cn.net;
      index index.html index.php index.htm;
      location ~ \.php$ {
      proxy_pass http://127.0.0.1:88;
      include naproxy.conf;
   }
   location / {
      try_files $uri @apache;
   }
   location @apache {
      proxy_pass http://127.0.0.1:88;
      include naproxy.conf;
   }
   #error_page 497 https://$host$uri?$args;
}

naproxy.conf:

proxy_connect_timeout 300s;
proxy_send_timeout   900;
proxy_read_timeout   900;
proxy_buffer_size    32k;
proxy_buffers        4 32k;
proxy_busy_buffers_size 64k;
proxy_redirect     off;
proxy_hide_header  Vary;
proxy_set_header   Accept-Encoding '';
proxy_set_header   Host   $host;
proxy_set_header   Referer $http_referer;
proxy_set_header   Cookie $http_cookie;
proxy_set_header   X-Real-IP  $remote_addr;
proxy_set_header   X-Forwarded-For $proxy_add_x_forwarded_for;


Apache 的配置文件 111cn.net.conf:

<VirtualHost *:88>
   DocumentRoot /www/111cn.net
   ServerName 111cn.net
   php_admin_value open_basedir /www/111cn.net:/tmp
   <IfModule mod_deflate.c>
      DeflateCompressionLevel 7
      AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
      AddOutputFilter DEFLATE css js html htm gif jpg png bmp php
   </IfModule>
</VirtualHost>
<Directory /www/111cn.net>
    Options FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

打赏

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

百分百源码网 建议打赏1~10元,土豪随意,感谢您的阅读!

共有10人阅读,期待你的评论!发表评论
昵称: 网址: 验证码: 点击我更换图片
最新评论

本文标签

广告赞助

能出一分力是一分吧!

订阅获得更多模板

本文标签

广告赞助

订阅获得更多模板