立即注册  找回密码
 立即注册
CeraNetworksBGVM服务器主机交流会员请立即修改密码Sharktech防护
查看: 356|回复: 7

小白 问个 NGINX 配置子域名问题

[复制链接]

小白 问个 NGINX 配置子域名问题

[复制链接]

3

主题

12

回帖

97

积分

注册会员

积分
97
whk0425

3

主题

12

回帖

97

积分

注册会员

积分
97
2018-9-13 22:22:25 | 显示全部楼层 |阅读模式
需求: 同一IP, 80端口,多个子域名访问

         a.xxx.com 指向目录 var/www/html/a.xxx.com
         b.xxx.com 指向目录 var/www/html/b.xxx.com

我的做法是 修改 etc/nginx/sites-avaliable/default  如下

                       
server {
        listen 80 ;
        listen [::]:80 ;
        server_name a.xxx.com ;
        
        root /var/www/html/a.xxx.com;

        # Add index.php to the list if you are using PHP
        index index.html index.htm index.nginx-debian.html index.php;

        

        location / {
        index index.html index.htm index.php default.html default.htm default.php;
        }
        location ~ .*\.php(\/.*)*$ {
        fastcgi_pass unix:/run/php/php7.0-fpm.sock;

        #fastcgi_pass 127.0.0.1:9000;

        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
        
        }
        
}





server {
        listen 80 ;
        listen [::]:80 ;
        server_name b.xxx.com ;
        
        root /var/www/html/b.xxx.com;

        # Add index.php to the list if you are using PHP
        index index.html index.htm index.nginx-debian.html index.php;

        

        location / {
        index index.html index.htm index.php default.html default.htm default.php;
        }
        location ~ .*\.php(\/.*)*$ {
        fastcgi_pass unix:/run/php/php7.0-fpm.sock;

        #fastcgi_pass 127.0.0.1:9000;

        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
        
        }
        
}


问题是 nginx 无法成功重启,有错误,将第二个 80端口 改成其他可以正常启动,但是域名访问失效,只能通过端口来区分访问目录,在网上搜了一大把,没有一个靠谱的,这应该是最基础的了吧,往大神指点一二。不甚感激,搞得头大!
回复

使用道具 举报

1

主题

10

回帖

33

积分

新手上路

积分
33
JamCh01

1

主题

10

回帖

33

积分

新手上路

积分
33
2018-9-14 09:09:05 | 显示全部楼层
试一试分开写
/etc/nginx/sites-avaliable/a
/etc/nginx/sites-avaliable/b
然后分别软连接到/etc/nginx/sites-enable
回复

使用道具 举报

3

主题

12

回帖

97

积分

注册会员

积分
97
whk0425 楼主

3

主题

12

回帖

97

积分

注册会员

积分
97
2018-9-14 09:15:07 | 显示全部楼层
好的,我回去试试。谢谢大佬
回复

使用道具 举报

3

主题

12

回帖

97

积分

注册会员

积分
97
whk0425 楼主

3

主题

12

回帖

97

积分

注册会员

积分
97
2018-9-14 10:58:28 | 显示全部楼层
试了下,不成功。
回复

使用道具 举报

41

主题

787

回帖

2480

积分

金牌会员

积分
2480
qytang

41

主题

787

回帖

2480

积分

金牌会员

积分
2480
2018-9-14 17:40:51 | 显示全部楼层
在第一个server的80端口后面加上reuse,具体的可以查看手册
回复

使用道具 举报

3

主题

12

回帖

97

积分

注册会员

积分
97
whk0425 楼主

3

主题

12

回帖

97

积分

注册会员

积分
97
2018-9-14 17:51:09 | 显示全部楼层
server {
        listen 80  reuse ;
        listen [::]:80 ;

结果:
Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.
回复

使用道具 举报

41

主题

787

回帖

2480

积分

金牌会员

积分
2480
qytang

41

主题

787

回帖

2480

积分

金牌会员

积分
2480
2018-9-14 18:13:04 | 显示全部楼层

whk0425 发表于 2018-9-14 17:51

server {
        listen 80  reuse ;
        listen [::]:80 ;


是 reuseport,记错了,不是reuse。。。
我一般会加一个default server,其他的server正常写,可以省好多麻烦
[ol]
  • server {
  •     listen          80 fastopen=3 reuseport default;
  •     listen          [::]:80  fastopen=3 reuseport default;
  •     server_name    _;
  • }[/ol]复制代码
  • 回复

    使用道具 举报

    3

    主题

    12

    回帖

    97

    积分

    注册会员

    积分
    97
    whk0425 楼主

    3

    主题

    12

    回帖

    97

    积分

    注册会员

    积分
    97
    2018-9-14 17:51:00 | 显示全部楼层

    qytang 发表于 2018-9-14 18:13

    是 reuseport,记错了,不是reuse。。。
    我一般会加一个default server,其他的server正常写,可以省好多 ...

    谢谢大佬,搞定了,感激涕零!!!!
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    Archiver|小黑屋|HS2V主机综合交流论坛

    GMT+8, 2024-11-22 09:11 , Processed in 0.079828 second(s), 10 queries , Gzip On, Redis On.

    Powered by Discuz! X3.5

    © 2001-2024 Discuz! Team.

    快速回复 返回顶部 返回列表