我在我的Mac上开发了一个Angular 2应用程序,并使用Nginx作为websever在本地运行。我现在遇到麻烦,我正在将它部署到AWS EC2实例上。这是一个Linux Red Hat 7实例。
我已经安装了Nginx并从我的mac复制了我的工作配置,确保更改server_name值和root,但我得到默认的nginx页面或404错误。
我已在/var/www/dist
设置了我的应用,并获得了chmod 755
该路径的权限以及dist中的文件。下面是我的配置(注意server_name的尖括号不在实际的配置中,我只是隐藏了这篇文章的实例名称。)
myhost/index.html
或myhost/someapppath
的所有尝试都返回404.使用myhost/
返回默认的nginx页面。我甚至尝试通过创建html目录并将文件放在那里进行测试来检查我的root,但即使这样也没有被提取。我在每次配置后都重新启动了nginx,但仍然保持不变。
有什么想法吗?
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server_names_hash_bucket_size 128;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name <hiding instance for this post>.ap-southeast-2.compute.amazonaws.com;
root /var/www/dist;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
index index.html index.htm;
try_files $uri $uri$args $uri/index.html /index.html =404;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
#include /etc/nginx/conf.d/*.conf;
}
更新
再次修改配置然后查看错误日志后,我现在看到以下内容:
2017/11/16 17:12:14 [crit] 23126#23126: *2 stat() "/var/www/dist/index.html" failed (13: Permission denied)
这更有意义。我为nginx用户运行了sudo chown nginx: var/
和sudo chown -R nginx: /var/www
并重新启动了nginx,但我仍然被拒绝了。我是否正确设置了权限?
答案 0 :(得分:0)
修正了它,非常棘手的问题。在这篇文章中使用@jsina的评论解决了问题:https://stackoverflow.com/a/36389001/2313746。
实际上,如果你{home}来自/ home的目录,它不会更新权限的上下文。