Skip to content

Commit

Permalink
fix: resolve refresh bug on when running on docker
Browse files Browse the repository at this point in the history
  • Loading branch information
henrychoy committed Oct 25, 2024
1 parent 5295ea9 commit bd5873e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docker/configs/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ events {
http {
include /etc/nginx/conf.d/http_*.conf;
include /etc/nginx/conf.d/https_*.conf;

server {
listen 80;
location / {
try_files $uri $uri/ /index.html;
}
}
}

stream {
Expand Down

0 comments on commit bd5873e

Please sign in to comment.