是否可能有几个没有域名的虚拟主机,只能通过IP访问?
事实上,我有一个根目录var / www,其中放置了一个laravel目录。但是,在这种情况下,我不能使用laravel的溃败。
例如,如果我尝试打开/ laravel / public / some_rout,它将把我踢到var / www。而且,如果我尝试使用/ laravel / public,它也可以正常工作。
请告诉我如何正确设置nginx配置文件。
下面是我的Nginx配置。当然,我可以将root更改为var / www / public / html,但是在这种情况下,我将无权访问var / www。
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /var/www;
index index.php index.html index.htm;
include /etc/nginx/default.d/*.conf;
location / {
try_files $uri $uri/ /index.php?$args;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}