簡體   English   中英

如何使用杠桿瀏覽器為angular應用編寫nginx conf文件

[英]how to write nginx conf file for angular app with Leverage browser

構建了角度應用之后,

當我運行docker文件時,無法加載頁面,

在控制台內,它給了我這個警告:

在此處輸入圖片說明

這是我的nginx-custom.conf文件:

server {
   listen 80;
   location / {
   root /usr/share/nginx/html;
   index index.html index.htm;
   try_files $uri $uri/ /index.html =404;
   }
   location ~*  \.(jpg|jpeg|png|gif|ico|css|js)$ {
       expires 365d;
   }
}

DockerFile:

FROM nginx:1.13
COPY  dist/ /usr/share/nginx/html
COPY ./nginx-custom.conf /etc/nginx/conf.d/default.conf
# Expires map
  map $sent_http_content_type $expires {
  default                    off;
  text/html                  epoch;
  text/css                   max;
  application/javascript     max;
  ~image/                    max;
  }

  server {
  listen 80;
  location / {
  root /usr/share/nginx/html;
  index index.html index.htm;
  try_files $uri $uri/ /index.html =404;
  }
 }

這是參考網址

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM