VPS侦探论坛

 找回密码
 注册
查看: 8788|回复: 3

配置好SSL以后,如何使https和http的都能正常访问?

[复制链接]
发表于 2010-10-11 00:49:54 | 显示全部楼层 |阅读模式

我按照网上的教程,配置好了SSL,访问https://的没事,但是访问http://的时候就会弹出来错误:


我希望https  http的都能正常访问网站,该怎么做呢?

我的nginx.conf文件为配置如下:
  1. server
  2.         {
  3.                 listen       80;
  4.                 listen       443;
  5.                 server_name www.aaa.com aaa.com;
  6.                 index index.html index.htm index.php;
  7.                 root  /home/wwwroot;

  8. ssl    on;
  9. ssl_certificate    /root/aaa.crt;
  10. ssl_certificate_key     /root/aaa.key;
  11. ssl_session_timeout 5m;

  12. ssl_protocols SSLv2 SSLv3 TLSv1;
  13. ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
  14. ssl_prefer_server_ciphers   on;

  15.                 location ~ .*\.(php|php5)?$
  16.                         {
  17.                                 fastcgi_pass  unix:/tmp/php-cgi.sock;
  18.                                 fastcgi_index index.php;
  19.                                 include fcgi.conf;
  20.                                 fastcgi_param  HTTPS on;
  21.                         }

  22.                 location /status {
  23.                         stub_status on;
  24.                         access_log   off;
  25.                 }

  26.                 location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  27.                         {
  28.                                 expires      30d;
  29.                         }

  30.                 location ~ .*\.(js|css)?$
  31.                         {
  32.                                 expires      12h;
  33.                         }

  34.                 log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
  35.              '$status $body_bytes_sent "$http_referer" '
  36.              '"$http_user_agent" $http_x_forwarded_for';
  37.                 access_log  /home/wwwlogs/access.log  access;
  38.         }
复制代码

[ 本帖最后由 ixbear 于 2010-10-12 16:42 编辑 ]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
 楼主| 发表于 2010-10-11 00:50:26 | 显示全部楼层


或者能不能强制http转到https呢
Linux下Nginx+MySQL+PHP自动安装工具:https://lnmp.org
发表于 2010-10-11 09:40:46 | 显示全部楼层

回复 1# 的帖子


/usr/local/nginx/sbin/nginx -t 看一下有错误没

单独将https的独立出为1个虚拟主机试试。
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
 楼主| 发表于 2010-10-11 14:36:02 | 显示全部楼层



单独新建了一个虚拟主机,问题依旧,求解决~
Linux下Nginx+MySQL+PHP自动安装工具:https://lnmp.org
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|VPS侦探 ( 鲁ICP备16040043号-1 )

GMT+8, 2024-11-18 01:36 , Processed in 0.026643 second(s), 18 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表