Skip to content

Commit

Permalink
chore: nginx 로그 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
jongmee committed Jul 26, 2024
1 parent 9169392 commit 64b9b20
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/Backend-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ jobs:
run: |
cd /home/ubuntu
sudo mkdir -p log/nginx && sudo touch log/nginx/error.log && sudo touch log/nginx/access.log
sudo touch docker-compose.yml
echo "${{ vars.DOCKER_COMPOSE }}" | sudo tee docker-compose.yml > /dev/null
Expand Down
3 changes: 3 additions & 0 deletions backend/pokerogue/docker/nginx/conf.d/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
access_log /log/nginx/access.log;
error_log /log/nginx/error.log;

upstream was {
server server:8080;
keepalive 32;
Expand Down

0 comments on commit 64b9b20

Please sign in to comment.