我有一个现有的服务器,它运行良好,使用 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 在通过控制面板输入的任何指令之前编写的。