问下在nginx里怎么配置https页面和接口访问
现在网站可以用https访问了,但是接口不通,现在想直接在网址后面加个api来访问接口这种,但是不通,一直报405,然后就想单独监听一个接口,但是访问超时,问下各位大佬是哪个地方有问题?
server {
listen 80;
server_name localhost;
#rewrite 301 https://www.lhintro.com$request_uri;
location / {
root /root/vue-my/dist;
try_files $uri $uri/ /index.html last;
index index.html;
}
}
server {
listen 443 ssl;
server_name localhost;
ssl_certificate cert/3378874_www.lhintro.com.pem;
ssl_certificate_key cert/3378874_www.lhintro.com.key;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #使用此加密套件。
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
location / {
root /root/vue-my/dist;
try_files $uri $uri/ /index.html last;
index index.html;
}
location /api {
proxy_pass http://127.0.0.1:3080;
# proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
#proxy_set_header X-NginX-Proxy true;
#proxy_set_header Connection "";
}
}
server {
listen 9000 ssl;
server_name localhost;
ssl_certificate cert/3378874_www.lhintro.com.pem;
ssl_certificate_key cert/3378874_www.lhintro.com.key;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
405的状态码一般是指方法不对,即,如该用POST传值的,却用了GET方法,试试查查api的文档或源码,选对的方式就好了。