Skip to content

Commit

Permalink
🔨 fix(ci) : nginx 도커 파일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ImNM committed Jul 16, 2022
1 parent e729b29 commit 985e007
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions nginx/default.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

server {
listen 3100;

server_name admin.gosrock.link;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}

error_log /var/log/nginx/api_error.log;
access_log /var/log/nginx/api_access.log;
}

0 comments on commit 985e007

Please sign in to comment.