Skip to content

Commit

Permalink
#59 fix : add domain to server_name (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
0321minji authored Jul 13, 2024
1 parent ca73078 commit 64a32bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 20 deletions.
17 changes: 0 additions & 17 deletions .config/UPCY.ini

This file was deleted.

6 changes: 3 additions & 3 deletions .config/nginx/UPCY.conf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
server {
listen 80;
server_name *.compute.amazonaws.com;
server_name *.compute.amazonaws.com *.upcy.co.kr;
charset utf-8;
client_max_body_size 128M;

location / {
uwsgi_pass unix:///tmp/UPCY.sock;
include uwsgi_params;
uwsgi_pass unix:///tmp/UPCY.sock;
include uwsgi_params;
}
}

0 comments on commit 64a32bb

Please sign in to comment.