AMH 社区首页
AMH社区 - 开放自由有价值的社区
[求助帖] 为什么使用https访问网站始终会自动下载php文件呢? |
|
---|---|
ptirch |
ptirch 发表于 2018-01-25 22:22:41
为什么使用https访问网站始终会自动下载php文件呢?
是哪里配置的问题啊?谢谢!
点赞,加油! (0分)
2018-01-25 22:22:41 1
|
ptirch |
server
{ listen 80; listen 443 ssl; server_name www.xxx.com xxx.com; index index.html index.htm index.php; ssl_certificate /home/wwwroot/suke/vhost/xxx.com.crt; ssl_certificate_key /home/wwwroot/suke/vhost/xxx.com.key; set $subdomain ''; root /home/wwwroot/suke/domain/www.xxx.com/web$subdomain; include /home/wwwroot/suke/rewrite/amh.conf; #rewrite end #error_page error_page 400 /ErrorPages/400.html; error_page 403 /ErrorPages/403.html; error_page 404 /ErrorPages/404.html; error_page 502 /ErrorPages/502.html; location ~ /ErrorPages/(400|401|403|404|405|502|503)\.html$ { root /home/wwwroot/suke/domain/www.xxx.com/web; } location ~ .*\.php$ { fastcgi_pass unix:/tmp/php-cgi-suke-www.xxx.com.sock; fastcgi_index index.php; include fcgi.conf; fastcgi_param DOCUMENT_ROOT /home/wwwroot/suke/domain/www.xxx.com/web$subdomain; fastcgi_param SCRIPT_FILENAME /home/wwwroot/suke/domain/www.xxx.com/web$subdomain$fastcgi_script_name; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp3|wma)$ { expires 30d; } location ~ .*\.(js|css)$ { expires 12h; } access_log off; #access_log end error_log /dev/null; #error_log end }
回复
2018-01-25 23:20:56 2
|
ptirch |
现在修改的这个文件 /home/wwwroot/suke/vhost/www.xxx.com.conf
不是修改的这里 /usr/local/nginx-generic-1.6/conf/nginx.conf(之前是修改的这里,但是问题还是一样)
回复
2018-01-25 23:23:29 3
|
amysql |
改过什么都改回来,别手动修改配置。
要用https,安装amssl使用。
回复
2018-01-26 10:00:14 4
AMH面板 - 好用高效低占用、安全可靠极稳定 |
9513645 |
安装模块修改,不要去修改文件。
回复
2018-01-27 15:25:49 5
|
huangml89 |
使用模块来启用https 简单又好用!不懂别乱修改文件!
回复
2018-01-29 14:11:56 6
|