我正在尝试通过 Nginx 部署 Laravel 5.4 应用程序。所以,我或多或少跟随this tutorial。
我的服务器是运行带有PHP 7.0的Ubuntu 16.04的Amazon EC2。 Nginx版本是1.10.3。
目前,我的应用程序没有域名,所以我只能通过ip访问它。我想通过类似于以下内容的URL访问我的应用程序:
http://ec2-xxx-xxx-xxx-xxx.us-west-2.compute.amazonaws.com/my-site
但是,尝试这样做会显示错误403.
如果我尝试直接访问公用文件夹(http://ec2-xxx-xxx-xxx-xxx.us-west-2.compute.amazonaws.com/my-site/public
),我将收到我的应用程序的主页,但链接已损坏。因为我在犯错时得到了Laravel错误,所以它似乎正在起作用。
端口80已打开(this answer),如果我只是在/var/www/html
内创建一个文件夹并放入index.php
文件,我可以通过浏览器访问它。尝试访问http://ec2-xxx-xxx-xxx-xxx.us-west-2.compute.amazonaws.com
会显示Welcome to nginx
默认页面,因此nginx正在运行。
Artisan(php artisan serve
)它似乎在终端中工作,但当我尝试通过浏览器(http://ec2-xxx-xxx-xxx-xxx.us-west-2.compute.amazonaws.com:8000
)访问它时,连接被拒绝(我也打开了端口8000)。
尝试通过ip()直接访问会导致每个URL的行为相同(xxx.xxx.xxx.xxx
显示nginx欢迎,xxx.xxx.xxx.xxx/my-site
返回403错误等。)
我认为我的问题在于网站可用文件。我不确定如何正确为我的特定应用程序命名文件,我觉得这是问题所在 - 因此nginx无法识别文件,因此应用网站中的配置: / p>
没有评论,这是我的/etc/nginx/sites-available/default
文件:
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.php index.html index.htm index.nginx-debian.html;
server_name xxx.xxx.xxx.xxx;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
这是/etc/nginx/sites-available/my-site
文件的内容:
server {
listen 80;
listen [::]:80;
root /var/www/html/my-site/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 xxx.xxx.xxx.xxx/my-site;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
这是我的nginx.conf
文件内容:
user www-data;
worker_processes auto;
pid /run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# SSL Settings
##
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
P.s。:我已经为sites-enabled
文件夹创建了符号链接。
我尝试在两个文件的ec2-xxx-xxx-xxx-xxx.us-west-2.compute.amazonaws.com
中使用EC2域(server_name
,但是当我尝试重新启动nginx时它返回了一个错误。
删除我的网站文件/my-site
的{{1}}部分仍然在server_name
网址中返回403错误。但是,如果我删除默认的nginx欢迎文件(ec2-xxx-xxx-xxx-xxx.us-west-2.compute.amazonaws.com/my-site
),我可以通过index.nginx-debian.html
网址访问目标主页,其中不包含http://ec2-xxx-xxx-xxx-xxx.us-west-2.compute.amazonaws.com
。链接也在起作用;但是,由于“内容安全策略”,由于“内容安全策略”而未加载外部和内部相同IP的JS文件,并且URL不是我想要的。
那么,这些配置是否有问题,特别是有关服务器名称和文件名的信息?