Score:0

Redirect to login page after logined to minio console

in flag

I am going to run the service with Minio and I run it with docker-compose:

version: '3.7'
services:
    service_minio:
        image: quay.io/minio/minio:latest
        container_name: service_minio
        restart: always
        ports:
            - 9000:9000
            - 9001:9001
        volumes:
            - ./volumes/minio/data:/data
        environment:
            - MINIO_ROOT_USER=minioadmin
            - MINIO_ROOT_PASSWORD=minioadmin
        command: server /data --console-address ":9001"
        networks:
            service_network:
                ipv4_address: 172.15.10.5
networks:
        service_network:
            external: true

And then i serve it with Nginx by below configuration:

server {
        listen 3000 default_server;
        listen [::]:3000 default_server;

        server_name mydomain.com;
        location / {
                access_log /var/log/nginx/minio_access.log;
                error_log /var/log/nginx/minio_error.log;
                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;
                proxy_set_header Host $http_host;
                proxy_pass http://172.15.10.5:9001;
        }
}

The problem is here, When i logged in to Minio Console, I will redirect to /login page without any errors. Actually i enter correctlly credentials but return back to /login page.

Do you know where the problem is?

StrikeAgainst avatar
in flag
I'm currently experiencing this problem with both my Pihole and SVNAdmin containers after I have moved my docker storage from the system SSD to a HDD Raid. Nextcloud's web UI also throws a 500 if I open it. Might be general issue with docker. Currently investigating if there's any permission or filesystem issues, I'll let you know if I find anything.
I sit in a Tesla and translated this thread with Ai:

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.