nginx,我可以看到是 laravel 中的 `index.php` 的测试
nginx, I can see is the test of `index.php` in laravel
现在,laravel 5.6 在我的服务器上,因此它对 public "deployment" 开放。事情是当我配置 nginx
以使用 laravel 的 public 目录并重新启动所有我能看到的是带有选项下载和保存的 index.php
的测试。
nginx 的访问日志:
162.158.22.173 - - [21/Jun/2018:23:18:39 +0000] "GET / HTTP/1.1" 500 175902 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36"
/etc/nginx/sites-available/laravel:
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/lib/jenkins/workspace/ytl/public;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
server_name 157.32.4.241;
#location / {
try_files $uri $uri/ /index.php;
location ~ \.php$ {
#try_files $uri /index.php =404;
try_files $uri $uri/ /index.php?$args;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
location ~ /git(/.*) {
client_max_body_size 0; # Git pushes can be massive, just to make sure nginx doesn't suddenly cut the connection add this.
auth_basic "Git Login"; # Whatever text will do.
auth_basic_user_file "/var/www/html/git/htpasswd";
include /etc/nginx/fastcgi_params; # Include the default fastcgi configs
fastcgi_param SCRIPT_FILENAME /usr/lib/git-core/git-http-backend; # Tells fastcgi to pass the request to the git http backend executable
fastcgi_param GIT_HTTP_EXPORT_ALL "";
fastcgi_param GIT_PROJECT_ROOT /var/www/html/git; # /var/www/git is the location of all of your git repositories.
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO ; # Takes the capture group from our location directive and gives git that.
fastcgi_pass unix:/var/run/fcgiwrap.socket; # Pass the request to fastcgi
}
现在:当我打开 url 时:它给我 index.php 文件。
nginx 无法写入存储文件夹,尝试chmod 777 path/to/storage
现在,laravel 5.6 在我的服务器上,因此它对 public "deployment" 开放。事情是当我配置 nginx
以使用 laravel 的 public 目录并重新启动所有我能看到的是带有选项下载和保存的 index.php
的测试。
nginx 的访问日志:
162.158.22.173 - - [21/Jun/2018:23:18:39 +0000] "GET / HTTP/1.1" 500 175902 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36"
/etc/nginx/sites-available/laravel:
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/lib/jenkins/workspace/ytl/public;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
server_name 157.32.4.241;
#location / {
try_files $uri $uri/ /index.php;
location ~ \.php$ {
#try_files $uri /index.php =404;
try_files $uri $uri/ /index.php?$args;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
location ~ /git(/.*) {
client_max_body_size 0; # Git pushes can be massive, just to make sure nginx doesn't suddenly cut the connection add this.
auth_basic "Git Login"; # Whatever text will do.
auth_basic_user_file "/var/www/html/git/htpasswd";
include /etc/nginx/fastcgi_params; # Include the default fastcgi configs
fastcgi_param SCRIPT_FILENAME /usr/lib/git-core/git-http-backend; # Tells fastcgi to pass the request to the git http backend executable
fastcgi_param GIT_HTTP_EXPORT_ALL "";
fastcgi_param GIT_PROJECT_ROOT /var/www/html/git; # /var/www/git is the location of all of your git repositories.
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO ; # Takes the capture group from our location directive and gives git that.
fastcgi_pass unix:/var/run/fcgiwrap.socket; # Pass the request to fastcgi
}
现在:当我打开 url 时:它给我 index.php 文件。
nginx 无法写入存储文件夹,尝试chmod 777 path/to/storage