在Docker化Angular应用后路由不起作用

时间:2018-12-18 17:54:36

标签: angular docker dockerfile angular-routing angular7

是Angular和Docker的新手。我已经开发了Angular 7应用程序并尝试对其进行docker化。我确实看到了许多教程,并且能够构建Docker映像。 下面是我的Dockerfile

FROM nginx:1.13.3-alpine
## Remove default nginx website
RUN rm -rf /usr/share/nginx/html/*
COPY ./ /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

然后我使用命令运行docker容器

docker run -d --name containerName -p 8082:80 imagename

我的容器确实启动了,在浏览器http://IP-address:8082/中浏览后,我可以看到我应用程序的索引html。除此之外,我的应用程序的其他网址(如登录页面(http://IP-address:8082/login)或仪表板(http://IP-address:8082/dashboard)均有效。我看到404页面未找到问题。还有什么要确保路由在我的Dockerized容器中可以正常工作的?

下面是我的default.conf文件

server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    #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   /usr/share/nginx/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;
    #}
}

我的Docker版本是Docker 17.03.2-ce版本。 任何帮助表示赞赏

1 个答案:

答案 0 :(得分:1)

之所以会这样,是因为基本的nginx映像将尝试处理来自docroot的请求,因此当您向{{1 }}。

为避免这种情况,无论请求如何,您都需要nginx来服务login.html ,从而让/login负责路由。

为此,您需要更改图像中当前包含的index.html,使其包括以下内容:

angular

代替默认值:

nginx.conf

您可以通过多种方式执行此操作,但是我想最好的方法是在try_files $uri $uri/ /index.html;中添加一条额外的命令,该命令可以像这样在nginx配置上进行复制:

try_files $uri $uri/ =404;

并用上面指定的命令替换目录中的Dockerfile文件(包含默认的nginx配置)。

编辑

已经有可以做到这一点的图像,因此您可以使用官方图像以外的其他图像,它是专门为此目的制作的,并且应该可以正常工作:example