Skip to content

Commit

Permalink
fix : 백엔드 도메인으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
kssumin authored Nov 1, 2024
1 parent 66c6411 commit 7fb41d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eeos/proxy/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ http {
# 기존 도메인(.store)에 대한 리다이렉트
server {
listen 80;
server_name eeos.econo.store;
return 301 http://eeos.econo.co.kr$request_uri;
server_name eeos.store;
return 301 http://eeos.co.kr$request_uri;
}

# 새 도메인(.co.kr) 처리
server {
listen 80;
server_name eeos.econo.co.kr;
server_name eeos.co.kr;

location /api/ {
proxy_pass http://docker-eeos-backend/api/;
Expand Down

0 comments on commit 7fb41d4

Please sign in to comment.