Guides: How to get a free certificate and use SSL with Ktor
Table of contents:
You can buy a certificate and configure Ktor to use it,or you can use Let’s Encrypt to automatically get a free certificate to serve https://
and wss://
requestswith Ktor.In this page you will discover how to do it, by either configuring Ktor to directly serve the SSL certificatefor a single domain or by using Docker with nginx to serve different applications in different containers ona single machine easily.
Option1: With Ktor serving SSL directly
Configuring an A register pointing to the machine
First of all, you have to configure your domain or subdomain to point to the IP of the machine thatyou are going to use for the certificate. You have to put the public IP of the machine here.If that machine is behind routers, you will need to configure the router to DMZ the machine with the host,or to redirect at least the port 80 (HTTP) to that machine, and later you will probably want to configure theport 443 (HTTPS) too.
Let’s Encrypt will always access the PORT 80 of your public IP, even if you configure Ktor to bind to another port,you have to configure your routes to redirect the port 80 to the correct local IP and port of the machinehosting ktor.
Generating a certificate
The Ktor server must not be running, and you have to execute the following command(changing my.example.com
, root@example.com
and 8889
).
This command will start a HTTP web server in the specified port (that must be available as port 80 in thepublic network, or you can forward ports in your router to 80:8889, and the domain must point to your public IP),it will then request a challenge, expose the /.well-known/acme-challenge/file
with the proper content, generate a domain private key, and retrieve the certificate chain:
export DOMAIN=my.example.com
export EMAIL=root@example.com
export PORT=8889
export ALIAS=myalias
certbot certonly -n -d $DOMAIN --email "$EMAIL" --agree-tos --standalone --preferred-challenges http --http-01-port $PORT
❌ Error output sample:
|
✅ Working output sample:
|
Converting the private key and certificate for Ktor
Now you have to convert the private key and certificates written by certbot
to a format that Ktor understands.
The chain and private keys are stored in /etc/letsencrypt/live/$DOMAIN
as fullchain.pem
and privkey.pem
.
openssl pkcs12 -export -out /etc/letsencrypt/live/$DOMAIN/keystore.p12 -inkey /etc/letsencrypt/live/$DOMAIN/privkey.pem -in /etc/letsencrypt/live/$DOMAIN/fullchain.pem -name $ALIAS
This will request a password for the export (you need to provide one for the next step to work):
Enter Export Password: mypassword
Verifying - Enter Export Password: mypassword
With th p12 file, we can use the keytool
cli to generate a JKS file:
keytool -importkeystore -alias $ALIAS -destkeystore /etc/letsencrypt/live/$DOMAIN/keystore.jks -srcstoretype PKCS12 -srckeystore /etc/letsencrypt/live/$DOMAIN/keystore.p12
Configuring Ktor to use the generated JKS
Now you have to update your application.conf
HOCON file, to configure the SSL port, the keyStore, alias, and passwords.You have to set the correct values for your specific case:
ktor {
deployment {
port = 8889
port = ${?PORT}
sslPort = 8890
sslPort = ${?PORT_SSL}
}
application {
modules = [ com.example.ApplicationKt.module ]
}
security {
ssl {
keyStore = /etc/letsencrypt/live/mydomain.com/keystore.jks
keyAlias = myalias
keyStorePassword = mypassword
privateKeyPassword = mypassword
}
}
}
If everything went well, Ktor should be listening on port 8889 in HTTP and listening on port 8890 in HTTPS.
Option2: With Docker and Nginx as reverse proxy
When using Docker with multiple domains, you might want to use the nginx-proxy image and the letsencrypt-nginx-proxy-companionimage to serve multiple domains/subdomains on a single machine/ip and to automatically provide HTTPS, using Let’s Encrypt.
In this case you create a container with NGINX, potentially listening to port 80
and 443
, an internal networkaccessible only between containers so nginx can connect and reverse proxy your websites (including websockets),and a NGINX companion handling the domain certificates by introspecting the configured Docker containers.
Creating a internal docker network
The first step is to create a bridge network that we will use so nginx can connect to other containersto reverse proxy a user’s HTTP, HTTPS, WS, and WSS requests:
docker network create --driver bridge reverse-proxy
Creating an Nginx container
Now we have to create a container running NGINX doing the reverse proxy:
docker rm -f nginx
docker run -d -p 80:80 -p 443:443 \
--name=nginx \
--restart=always \
--network=reverse-proxy \
-v /home/virtual/nginx/certs:/etc/nginx/certs:ro \
-v /home/virtual/nginx/conf.d:/etc/nginx/conf.d \
-v /home/virtual/nginx/vhost.d:/etc/nginx/vhost.d \
-v /home/virtual/nginx/html:/usr/share/nginx/html \
-v /var/run/docker.sock:/tmp/docker.sock:ro \
-e NGINX_PROXY_CONTAINER=nginx \
--label com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy=true \
jwilder/nginx-proxy
—restart=always
so the docker daemon restarts the container when the machine is restarted.—network=reverse-proxy
so NGINX is in that network and can connect to other containers in the same network.-v certs:ro
this volume will be shared with the letsencrypt-companion to access the certificates per domain.-v conf, vhost
so this configuration is persistent and accessible from outside in the case you have to do some tweaks.-v /var/run/docker.sock
this allows this image to get notified / introspect about new containers running in the daemon.-e —label
used by the companion by identify this image as NGINX.
You can adjust /home/virtual/nginx*
paths to the path you prefer.
Creating a Nginx Let’s Encrypt companion container
With the nginx-proxy container, now we can create a companion container,that will request and renew certificates:
docker rm -f nginx-letsencrypt
docker run -d \
--name nginx-letsencrypt \
--restart=always \
--network=reverse-proxy \
--volumes-from nginx \
-v /home/virtual/nginx/certs:/etc/nginx/certs:rw \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
jrcs/letsencrypt-nginx-proxy-companion
—restart=always
as the NGINX image, to restart on boot.—network=reverse-proxy
it need to be on the same network as the NGINX proxy container to communicate with it.—volumes-from nginx
it makes accessible the same volumes as the NGINX container so it can write the.well-known
challenge inside/usr/share/nginx/html
.-v certs:rw
it requires write access to write the private key and certificates to be available from NGINX.-v /var/run/docker.sock
requires access to docker events and introspection to determine which certificates to request.
Creating a service
Now we have NGINX and Let’s Encrypt companion configured so they will automatically reverse-proxy your websites andrequest and serve certificates for them based on the environment variables VIRTUAL_HOST
, VIRTUAL_PORT
and LETSENCRYPT_HOST
, LETSENCRYPT_EMAIL
.
Using docker-compose, you can create a docker-compose.yml
file (without additional services) that could look like this:
docker-compose.yml
version: '2'
services:
web:
build:
context: ./
dockerfile: Dockerfile
expose:
- 8080
environment:
- VIRTUAL_HOST=mydomain.com
- VIRTUAL_PORT=8080
- LETSENCRYPT_HOST=mydomain.com
- LETSENCRYPT_EMAIL=myemail@mydomain.com
networks:
- reverse-proxy
restart: always
networks:
backend:
reverse-proxy:
external:
name: reverse-proxyv
Dockerfile
FROM openjdk:8-jre-alpine
ENV APPLICATION_USER ktor
RUN adduser -D -g '' $APPLICATION_USER
RUN mkdir /app
RUN chown -R $APPLICATION_USER /app
USER $APPLICATION_USER
COPY ./build/libs/my-application.jar /app/my-application.jar
WORKDIR /app
CMD ["java", "-server", "-XX:+UnlockExperimentalVMOptions", "-XX:+UseCGroupMemoryLimitForHeap", "-XX:InitialRAMFraction=2", "-XX:MinRAMFraction=2", "-XX:MaxRAMFraction=2", "-XX:+UseG1GC", "-XX:MaxGCPauseMillis=100", "-XX:+UseStringDeduplication", "-jar", "my-application.jar"]
You can find more information about how to deploy a docker and the Dockerfile.
Simplified overview
#direction: right
#.internet: fill=#fee
#.network: fill=#efe
#.http: fill=#6f6
#.ssl: fill=#6af
[<internet>Internet]
[<http>Nginx
|port=80 (HTTP, WS)
|port=443 (HTTPS and WSS)
|TLS certs per domain
|VIRTUAL_HOST
|VIRTUAL_PORT
]
[App
|[port=8080 HTTP & WS]
|[<http>VIRTUAL_HOST=myhost.com]
|[<http>VIRTUAL_PORT=8080]
|[<ssl>LETSENCRYPT_HOST=myhost.com]
|[<ssl>LETSENCRYPT_EMAIL=email@myhost.com]
]
[<ssl>Let's Encrypt companion
|LETSENCRYPT_HOST
|LETSENCRYPT_EMAIL]
[Docker
|port=80,443
]
[Let's Encrypt] <- cert request [Let's Encrypt companion]
[App] -:> [reverse-proxy]
[<network>reverse-proxy|network]
[Nginx] <- [reverse-proxy]
[Internet] <- port 80, 443[Docker]
[Docker] <- [Nginx]
[Let's Encrypt companion] <-> [Nginx]
The XForwardedHeaderSupport feature
In this case you are using nginx acting as reverse-proxy for your requests. If you want to get information about the original requests,instead of the proxied nginx request, you will have to use the XForwardedHeaderSupport feature.