-
Notifications
You must be signed in to change notification settings - Fork 288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I use MINIO_BROWSER_REDIRECT_URL, minio console always blank page #2766
Comments
@foreverrice this is a Console UI issue moving this to relevant project for analysis. |
i have a similar problem. i'm using a subpath of
but when you try to use certain pages like buckets, you get:
|
+1 |
I was having the same issue and it was exactly the same as @avnav88 said, one solution is to add the |
just to help out anyone in the future, this worked for me:
nginx:
|
I think this maybe should be MINIO_SERVER_URL="https://subdomain.example.net/minio" or :9000/minio or something like that |
my docker run cfg:
docker run -dt
-p 9101:9000 -p 9191:9090
-v /data/s3storagebak/data:/mnt/data
-e "MINIO_ROOT_USER=admin"
-e "MINIO_ROOT_PASSWORD=xxx"
-e "MINIO_VOLUMES=/mnt/data"
-e "MINIO_BROWSER_REDIRECT_URL=https://xxx.com/minioconsole"
--name "minio_local_bak"
xxx/minio:RELEASE.2023-03-24T21-41-23Z server --console-address ":9090"
my nginx cfg:
location ^~ /minioconsole/ {
proxy_read_timeout 36000s;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
rewrite ^/minioconsole/(.*)$ /$1 break;
proxy_pass http://127.0.0.1:9191/;
expires -1;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
client_max_body_size 10240m;
}
I visit the mini console and clicking on some menus always results in a blank page error.
These menus, such as:
always have error.
The text was updated successfully, but these errors were encountered: