Replies: 2 comments 2 replies
-
You have to tell what error you get when trying to access. The link to the tutorial doesn't seem right? What tutorial did you follow? |
Beta Was this translation helpful? Give feedback.
2 replies
-
@primetomas |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I can't access the signserver administration page. I generated a tls servser certificate following this tuto (https://youtu.be/EoL5R_0h9xk)and then imported it into my browser then :
Doker compose restart
Docker compose logs -f
I've used the following docker-compose.yml file:
networks:
access-bridge:
driver: bridge
application-bridge:
driver: bridge
services:
signserver-database:
container_name: signserver-database
image: "library/mariadb:latest"
networks:
- application-bridge
environment:
- MYSQL_ROOT_PASSWORD=foo123
- MYSQL_DATABASE=signserver
- MYSQL_USER=signserver
- MYSQL_PASSWORD=signserver
volumes:
- ./datadbdir:/var/lib/mysql:rw
signserver-node:
hostname: signserver-node
container_name: signserver
image: primekey/signserver-ce
depends_on:
- signserver-database
networks:
- access-bridge
- application-bridge
environment:
- DATABASE_JDBC_URL=jdbc:mariadb://signserver-database:3306/ejbca?characterEncoding=UTF-8
- LOG_LEVEL_APP=INFO
- LOG_LEVEL_SERVER=INFO
- TLS_SETUP_ENABLED=simple
ports:
- "8081:8080"
- "8444:8443"
Beta Was this translation helpful? Give feedback.
All reactions