4

我有一个现有的服务器,它运行良好,使用 nginx 和 ISPconfig 托管了许多站点。但是我创建了一个新站点并希望使用 Laravel。

我已经通过 composer 成功安装了 Laravel,并且在我访问 mywebsite.com/public 时看到了熟悉的欢迎刀片

我接下来要做的是制作一些干净的网址。我在使用 vhost 文件方面的经验有些有限,而且我在配置方面遇到了一些问题。

我的路线文件看起来像这样

Route::get('/', function () {
    return view('welcome');
});
Route::get('/test', function () {
    return view('test');
});

我希望看到 mywebsite.com/test 显示 test.blade.php 的内容

我知道我需要对 vhost 文件做一些工作才能期望它起作用,但是我对 vhosts 的经验是有限的,我有点茫然。

我当前的文件看起来像这样

server {
    listen *:80;
    server_name mywebsite.com ;

    root   /var/www/mywebsite.com/web;

    index index.html index.htm index.php index.cgi index.pl index.xhtml;

    error_page 400 /error/400.html;
    error_page 401 /error/401.html;
    error_page 403 /error/403.html;
    error_page 404 /error/404.html;
    error_page 405 /error/405.html;
    error_page 500 /error/500.html;
    error_page 502 /error/502.html;
    error_page 503 /error/503.html;
    recursive_error_pages on;
    location = /error/400.html {

        internal;
    }
    location = /error/401.html {

        internal;
    }
    location = /error/403.html {

        internal;
    }
    location = /error/404.html {

        internal;
    }
    location = /error/405.html {

        internal;
    }
    location = /error/500.html {

        internal;
    }
    location = /error/502.html {

        internal;
    }
    location = /error/503.html {

        internal;
    }

    error_log /var/log/ispconfig/httpd/mywebsite.com/error.log;
    access_log /var/log/ispconfig/httpd/mywebsite.com/access.log combined;

    location ~ /\. {
        deny all;
        access_log off;
        log_not_found off;
    }

    location = /favicon.ico {
        log_not_found off;
        access_log off;
    }

    location = /robots.txt {
        allow all;
        log_not_found off;
        access_log off;
    }

    location /stats/ {

        index index.html index.php;
        auth_basic "Members Only";
        auth_basic_user_file /var/www/clients/client1/web5/web/stats/.htpasswd_stats;
    }

    location ^~ /awstats-icon {
        alias /usr/share/awstats/icon;
    }

    location ~ \.php$ {
        try_files /5e26a1d85cb98f7191261e023385e60d.htm @php;
    }

    location @php {
        try_files $uri =404;
        include /etc/nginx/fastcgi_params;
        fastcgi_pass unix:/var/lib/php5-fpm/web5.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_intercept_errors on;
    }
}

现在在另一台服务器上,我可以使用这个简单的指令

server {
    root /var/www/public;
    index index.php index.html index.htm;
    server_name localhost;

    location / {
        try_files $uri $uri/ /index.php$is_args$args;
    }
}

但是我只能在当前服务器上使用虚拟主机做些什么,因为 ISPconfig 为我编写了大部分内容,并且拒绝编写在其他地方工作的上述配置。另外我觉得直接编辑文件是不好的做法,我总是担心 ISPconfig 会为我重写文件,所以我不太确定如何最好地进行此操作。

我的选择是继续编辑虚拟主机并希望最好,但如果我这样做,我将如何确保 ISPconfig 在不诉诸“hacky”方法的情况下无法覆盖文件?

或者,是否有我可以通过 ISPconfig 输入的配置,允许以适合 Laravel 的方式正确进行重写?在这种情况下,输入的任何指令都需要优先于~ .php$子句,因为它是由 ISPconfig 在通过控制面板输入的任何指令之前编写的。

4

3 回答 3

4

我最近也遇到了同样的问题。挖掘 ISPConfig 的来源,我知道它可以插入/合并/删除该默认 vhosts 文件的位置块。所以我做了以下事情:

站点菜单 > 选择网站 > 选项

然后我在“nginx Directives”字段中输入了以下内容:

# redirect stuff to the public inner folder
location / {
    root {DOCROOT}/public;
    try_files /public/$uri /public/$uri/ /public/index.php?$query_string;
} 

# merged the stuff people suggests for laravel inside the php block
# mind the 'merge' keyword that did the trick
location ~ \.php$ { ##merge##
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_intercept_errors off;
    fastcgi_buffer_size 16k;
    fastcgi_buffers 4 16k;
}
于 2016-03-04T20:49:10.507 回答
3

达尼洛的回答有一点问题。php 运行了,但像 js/css/images 这样的资产停止加载。将以下内容添加到 ISPConfig 中的 nginx 指令对我有用:

location / {
    root {DOCROOT}/public;
    try_files $uri public/$uri/ /public/index.php?$query_string;
}
于 2016-03-21T18:47:01.943 回答
1

我不是这方面的专家,但根据我过去的经验,如果我有两个域,我会在两个不同的文件中为每个域定义服务器块,并将它们放在 /etc/nginx/sites-available/site1.com 和 /etc/nginx/sites - 可用/site2.com

但看起来您已经有一个网站,您可以使用位于 /var/www/mywebsite.com/web 的 mywesite.com 访问该网站;(查看配置文件的根值)

现在您将 Laravel 安装在 /var/www/mywebsite.com/test 位置的测试文件夹中。

要访问它,您可以尝试在 ispconfig 文件末尾添加以下内容。

请注意我是如何使用从服务器块根目录到 laravel 公用文件夹的相对路径的。

location /../test/public {
    try_files $uri $uri/ /index.php$is_args$args;
}

有关更详细的教程,请尝试Nginx 服务器块设置

希望这可以帮助,

ķ

于 2015-08-14T09:45:27.453 回答