想把 api.example.com 解析到 123.123.123.123:8080/api 下
nginx 我已经配置了 api.example.com 123.123.123.123:8080
那个 /api 应该在哪里配置
upstream api__upstream {
server 127.0.0.1:8080;
keepalive 64;
}
server {
listen 443 ssl;
ssl_certificate "/etc/nginx/cert/api.pem";
ssl_certificate_key "/etc/nginx/cert/api.key";
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_session_timeout 5m;
ssl_prefer_server_ciphers on;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
server_name api.xxx.com;
access_log /root/nginx.log;
location / {
proxy_pass http://api__upstream;
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_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
}
}
server {
listen 80;
server_name api.xxxx.com;
return 301 https://$server_name$request_uri;
}
去网上搜不知道应该按什么关键字搜这个问题 →_→
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.