- 主题:nginx server,怎么把域名自动转换成https的呢?
conf 加上一句
return 301 https://$host$request_uri;
这样就可以了
--
FROM 116.247.118.*
具体加在哪里呢?
【 在 lupa1999 的大作中提到: 】
: conf 加上一句
: return 301 https://$host$request_uri;
: 这样就可以了
--
修改:wjhtingerx FROM 124.65.135.*
FROM 124.65.135.*
...你去baidu之,在你域名设置的conf里面
【 在 wjhtingerx 的大作中提到: 】
: 具体加在哪里呢?
:
--
FROM 116.247.118.*
就是放在下面server里任何一行都行?
server {
listen 443 ssl http2 default_server;
listen [::]:443 ssl http2 default_server;
server_name _;
# root /usr/share/nginx/html;
root xxxxxxxx;
ssl_certificate "/etc/pki/nginx/server.crt";
ssl_certificate_key "/etc/pki/nginx/private/server.key";
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 10m;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
【 在 lupa1999 的大作中提到: 】
: ...你去baidu之,在你域名设置的conf里面
--
FROM 124.65.135.*
你试过了么?
【 在 wjhtingerx 的大作中提到: 】
: 就是放在下面server里任何一行都行?
: server {
: listen 443 ssl http2 default_server;
: ...................
--
FROM 116.247.118.*
试过了,加过几个地方,都不行
【 在 lupa1999 的大作中提到: 】
: 你试过了么?
:
--
FROM 124.65.135.*
你太水了,找个专业点的人去做这个事情吧
这个最基本啦,简单的301设置,你都搞不定啊
--
FROM 116.247.118.*