Skip to content

Commit

Permalink
배포 파일 설정 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
E2YunJeong committed Sep 27, 2024
1 parent 96501d1 commit 3f3808b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:
with:
aws_access_key: ${{secrets.AWS_ACCESS_KEY}}
aws_secret_key: ${{secrets.AWS_SECRET_KEY}}
application_name: M-Bridge
environment_name: M-Bridge-env
application_name: MBridge
environment_name: MBridge-env
version_label: github-action-${{github.run_id}}
region: ap-northeast-2
deployment_package: deploy/deploy.zip
Expand Down
2 changes: 2 additions & 0 deletions .platform/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ worker_rlimit_nofile 33282;
events {
use epoll;
worker_connections 1024;
multi_accept on;
}

http {
Expand All @@ -30,6 +31,7 @@ http {

server {
listen 80 default_server;
listen [::]:80 default_server;

location / {
proxy_pass http://springboot;
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repositories {
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
//implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
Expand Down

0 comments on commit 3f3808b

Please sign in to comment.