这个应该是修改nginx.conf文件就可以
软件管理----nginx -- 设置 -- 配置修改 -- 拉到下面就会发现下面代码,这里添加证书配置应该就可以- server
- {
- listen 888;
- server_name www.bt.cn;
- index index.html index.htm index.php;
- root /www/server/phpmyadmin;
- #error_page 404 /404.html;
- include enable-php.conf;
- location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
- {
- expires 30d;
- }
- location ~ .*\.(js|css)?$
- {
- expires 12h;
- }
- location ~ /\.
- {
- deny all;
- }
- access_log /www/wwwlogs/access.log;
- }
复制代码
|