问下在nginx里怎么配置https页面和接口访问

发布于 2022-09-12 00:45:15 字数 1266 浏览 13 评论 0

现在网站可以用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飘过的浮云 2022-09-19 00:45:15

405的状态码一般是指方法不对,即,如该用POST传值的,却用了GET方法,试试查查api的文档或源码,选对的方式就好了。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文