소스 검색

update 8080

Administrator 4 달 전
부모
커밋
6b5ee9ed96
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      app.conf
  2. 1 1
      docker-compose.yml

+ 1 - 1
app.conf 파일 보기

8
     ssl_certificate_key /etc/nginx/ssl/live/[domain-name]/privkey.pem;
8
     ssl_certificate_key /etc/nginx/ssl/live/[domain-name]/privkey.pem;
9
     
9
     
10
     location / {
10
     location / {
11
-    	proxy_pass http://frontpod;
11
+    	proxy_pass http://frontpod:8080;
12
     }
12
     }
13
 }
13
 }

+ 1 - 1
docker-compose.yml 파일 보기

31
     image: devops.vespot.co:5000/factorytracefront:lahelice
31
     image: devops.vespot.co:5000/factorytracefront:lahelice
32
     restart: always
32
     restart: always
33
     ports:
33
     ports:
34
-      - "80:80"
34
+      - "8080:80"
35
     depends_on:
35
     depends_on:
36
       - restpod
36
       - restpod
37
   
37