-
-
Notifications
You must be signed in to change notification settings - Fork 104
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
Gateway Server Setup with Docker-Compose #38
Comments
The Vulcain gateway server is connecting using |
that is correct. I also tried that. using http: site_url and https: site_url and vulcain complained about certificates being unauthorized or something. i can try to get the exact error message after lunch. |
Seems like golang/go#28168 We need to override |
no idea. ill wait for a response. thanks. the error when using https: site_url
|
If using mkcert you need to mount the Regarding the use of the real host instead of the service name a good trick is to use the network config. networks:
vulcain:
name: 'vulcain'
services:
vulcain:
networks:
default: {}
vulcain: {}
app:
networks:
default: {}
vulcain:
aliases:
- 'site_url' |
Hi,
Just a quick question. I am struggling to get my nginx+ssl configuration working with vulcain. With the current setup i have, see below, i receive the following vulcain error: (site_url represents my real url)
I have the following
Docker-compose.yml
:My guess here, Vulcain requires that nginx be using http only? However, i would prefer to use my nginx ssl setup. Any information would be greatly appreciated.
The text was updated successfully, but these errors were encountered: