-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: 포트 지정 * fix; 포트 수정 * fix: ports를 expose로 변경 * chore: nginx도 docker-compose가 관리하도록 수정 * fix: docker-compose 수정 * chore: expose 8080 * fix: 명령에 dash 추가 * chore: nginx 관련 docker setting * chore: nginx 관련 docker setting * chore: nginx 관련 docker setting * chore: nginx 관련 docker setting 제거 * Revert "chore: nginx 관련 docker setting 제거" This reverts commit 186eab3. * chore: nginx dockerfile 제거 * fix: 경로 변경 * chore: docker-compose 수정 * chore: 파일 이동 * chore: nginx.conf도 scp로 복사 * fix: 콤마로 구분 * fix: nginx.conf의 location 경로 변경 * fix: nginx.conf * fix: nginx.conf를 http로 wrap * fix: upstream 수정 * fix: 포트 설정 * chore: 서버 포트 명시 * chore: 도커 컴포즈 수정 * chore: nginx의 connection 수를 지정 * fix: 경로 어노테이션 수정 * fix: proxy_pass 수정 * chore: test 트리거 제거 * test: dash 필요한지 test * chore: test 트리거 제거 * test: 'build: .'가 없어도 되는지 테스트 * chore: build: . 제거 * test: ports 관련 정보를 모두 제거해도 되는지 테스트 * test: events 없이 테스트 * Revert "test: events 없이 테스트" This reverts commit 44520b2. * test: upstream을 지정하지 않는 경우 test * chore: test 원상복구 * chore: test 트리거 제거 * chore: 주석 제거
- Loading branch information
1 parent
c561965
commit c95a782
Showing
4 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
events { | ||
worker_connections 10; | ||
} | ||
|
||
http { | ||
upstream deploy_container { | ||
server localhost:8080; | ||
} | ||
|
||
server{ | ||
listen 80; | ||
|
||
location / { | ||
proxy_pass http://deploy_container/test; | ||
proxy_set_header Host $host; | ||
proxy_set_header X-Real-IP $remote_addr; | ||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters