我正在尝试使用nginx在ec2实例上提供角度站点。
在我的/etc/nginx/nginx.conf文件中,我定义了一个服务器:
server {
listen 8081;
server_name localhost;
location / {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
在http块中,我已经包含了配置文件的路径,如下所示:
include /home/bitnami/apps/mysite/mysite.conf;
路径正确,因为以下终端行在vim中打开文件:
sudo vim /home/bitnami/apps/mysite/mysite.conf;
当我去public.ip.address:8081时,会显示Nginx欢迎页面。当我去public.ip.address:9000应该是mysite时,我得到404错误。
其他信息:
修改
**问题**
我的mysite.conf中的root是错误的。
server {
listen 9000;
root /Users/me/Repository/mysite/dist;
access_log off;
error_log off;
index index.html;
client_max_body_size 10m;
location ^~ /api/ {
proxy_pass http://localhost:8080/;
}
location = /nginxstatus {
access_log off;
return 200;
}
}