Skip to content

Commit

Permalink
fix: fix admin port
Browse files Browse the repository at this point in the history
  • Loading branch information
Soulike committed Apr 7, 2024
1 parent 4375d75 commit d8b4f76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nginx/configurations/conf.d/admin.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ server {

location / {
include /etc/nginx/proxy.conf;
proxy_pass http://localhost:3000;
proxy_pass http://localhost:3001;
add_header Cache-Control "no-cache";
include /etc/nginx/security-headers.conf;
}

location /_next/static {
include /etc/nginx/proxy.conf;
proxy_pass http://localhost:3000;
proxy_pass http://localhost:3001;
add_header Cache-Control "public, immutable";
expires 1y;
include /etc/nginx/security-headers.conf;
Expand Down

0 comments on commit d8b4f76

Please sign in to comment.