通过Nginx将2个域链接到1个Laravel项目

时间:2018-10-25 14:55:31

标签: laravel nginx virtualhost digital-ocean nginx-virtual-hosting

我正在尝试将另一个域链接到我现有的项目

enter image description here

我正在使用Laravel 5.1 ,我知道.env中只有一个APP_URL

是否可以通过 Nginx 级进行操作?

猫/ etc / nginx / sites-available / default

server {                                                                                                                                                                           
    listen 80 default_server;                                                                                                                                                      
    server_name default;                                                                                                                                                           
    root /home/forge/bheng/public;                                                                                           
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;                                                                                                                                           

    index index.html index.htm index.php;                                                                                                                                          

    charset utf-8;                                                                                                                                                                 

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }


    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }
    access_log off;
    error_log  /var/log/nginx/default-error.log error;

    error_page 404 /index.php;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }
}

如何配置这样的东西?

3 个答案:

答案 0 :(得分:1)

您为两个域指定相同的Webroot。在Laravel代码中,您可以使用域组或url('/')来检查您所在的域。

您的配置可能如下所示:

server {
     listen 80, 443;
     listen [::]:80, [::]:443;
     servername www.domain1.com www.domain2.com;

     root /home/kyo/laravel/public/;

     index index.php;

     location / {
          try_files $uri $uri/ =404;
     }
}

答案 1 :(得分:1)

在服务器名称config中将这两个域用作别名

server_name domain1.com www.domain1.com domain2.com www.domain2.com ;               

答案 2 :(得分:0)

我使用了类似这样的名称,即服务器名称别名:

server_name www.app1 www.app2;

然后将DNS指向同一主机。如果您在自己的Linux机器上工作,请更改/etc/hosts文件:

sudo vim /etc/hosts

并添加新主机:

127.0.0.1 www.app1
127.0.0.1 www.app2