Hi.

I'm having a problem trying to user Gilab + Kanban.

I've installed GitLab CE Omnibus step by step, and after it, I've installed 
Kanban following the project step by step 
(https://gitlab.com/leanlabsio/kanban).

My Docker Compose is:
proxy:
  image: leanlabs/nginx:1.0.1
  volumes:
    - "./build/conf.d:/etc/nginx/conf.d"
    - "./build/certs:/etc/nginx/certs"
    - "./build/sites-enabled:/etc/nginx/sites-enabled"
  links:
    - kanban:kanban
  ports:
    - "443:443"
    - "8081:80"

kanban:
  image: leanlabs/kanban:1.6.0
  environment:
    # URL on which Leanlabs Kanban will be reachable
    - KANBAN_SERVER_HOSTNAME=http://192.168.0.147
    # This string is used to generate user auth tokens
    - KANBAN_SECURITY_SECRET=qwerty
    # Your GitLab host URL
    - KANBAN_GITLAB_URL=http://192.168.0.147
    # Your GitLab OAuth client ID
    - 
KANBAN_GITLAB_CLIENT=4d8e1a4d9155f1c8ede20f53a5ff8355dffda91529948018a834b24cf5698252
    # Your GitLab OAuth client secret key
    - 
KANBAN_GITLAB_SECRET=7e8c4666bd2d947e2e46c91ed8dad0f4cf994d8bfbd9d4460ba899b9ffc38809
    # Wheter to enable sign up with user API token
    - KANBAN_ENABLE_SIGNUP=true
    # Redis server address - IP:PORT
    - KANBAN_REDIS_ADDR=redis:6379
  links:
    - redis:redis
  command: ./kanban server

redis:
  image: leanlabs/redis:1.0.0
  volumes:
    - "/data:/data"

After run the docker, I get working bot, Gitlab and Kanban, but when I try 
to use Gitlab Auth, I have problems.

If I set callback URL to 
http://192.168.0.147:8081/assets/html/user/views/oauth.html I get this 
error:
The redirect URI included is not valid.

And if I set the callback URL to 
http://192.168.0.147/assets/html/user/views/oauth.html, a window with de 
authorization request pop-up, but when I click on Acept, I get a 404 error 
page.

I'm very noob, but I like to learn. What could I do?

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to gitlabhq+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/gitlabhq/099b3448-d1e7-44e0-a710-400db4c94da8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to