tufu001 发表于 2018-2-27 19:46:11

nginx配置

第二个站点配置完打开是welcome?
server {
listen 80;
server_name a.com;
rewrite   ^ https://$server_name$request_uri? permanent;
}
server {
listen 443 ssl http2;
server_name a.com www.a.com;
ssl on;
ssl_certificate /root/.acme.sh/a.com/fullchain.cer;
ssl_certificate_key /root/.acme.sh/a.com/a.com.key;
location / {
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header Host $http_host;
      proxy_pass http://127.0.0.1:8088;
}
}
server{
    listen 80;
    server_name b.com;
    root/home/www/b;
    index index.html index.htm;
    location \ {

    }
}

Dwight 发表于 2018-2-27 19:49:27

不知道楼下回答紫薯布丁

dengdeng 发表于 2018-2-27 19:54:35

Dwight 发表于 2018-2-27 19:49
不知道楼下回答紫薯布丁

神马图???

bitspirit 发表于 2018-2-27 19:56:50

呵呵又要建机场了,ssmgr吧yc010t

tufu001 发表于 2018-2-27 20:02:53

bitspirit 发表于 2018-2-27 19:56
呵呵又要建机场了,ssmgr吧

机场吃灰 弄个博客记笔记yc007t

南琴浪 发表于 2018-3-1 00:27:58

1. 第二个 server 要看你的 8088 后端是什么

2. 你怎么写了两个 listen 80 ?

tufu001 发表于 2018-3-1 01:06:22

南琴浪 发表于 2018-3-1 00:27
1. 第二个 server 要看你的 8088 后端是什么

2. 你怎么写了两个 listen 80 ?

已经解决了
还是谢谢指点
页: [1]
查看完整版本: nginx配置