Guides: How to get a free certificate and use SSL with Ktor

SSL - 图1

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:

  1. export DOMAIN=my.example.com
  2. export EMAIL=root@example.com
  3. export PORT=8889
  4. export ALIAS=myalias
  5. certbot certonly -n -d $DOMAIN --email "$EMAIL" --agree-tos --standalone --preferred-challenges http --http-01-port $PORT
❌ Error output sample:
  1. Saving debug log to /var/log/letsencrypt/letsencrypt.log
  2. Plugins selected: Authenticator standalone, Installer None
  3. Obtaining a new certificate
  4. Performing the following challenges:
  5. http-01 challenge for my.example.com
  6. Waiting for verification
  7. Cleaning up challenges
  8. Failed authorization procedure. my.example.com (http-01): urn:acme:error:connection :: The server could not connect to the client to verify the domain :: Fetching http://my.example.com/.well-known/acme-challenge/j-BJXA5ZGXdJuZhTByL4B95XBpiaGjZsm8JdCcA3Vr4: Timeout during connect (likely firewall problem)
  9. IMPORTANT NOTES:
  10. - The following errors were reported by the server:
  11. Domain: my.example.com
  12. Type: connection
  13. Detail: Fetching
  14. http://my.example.com/.well-known/acme-challenge/j-BJXA5ZGXdJuZhTByL4B9zXBp3aGjZsm8JdCcA3Vr4:
  15. Timeout during connect (likely firewall problem)
  16. To fix these errors, please make sure that your domain name was
  17. entered correctly and the DNS A/AAAA record(s) for that domain
  18. contain(s) the right IP address. Additionally, please check that
  19. your computer has a publicly routable IP address and that no
  20. firewalls are preventing the server from communicating with the
  21. client. If you're using the webroot plugin, you should also verify
  22. that you are serving files from the webroot path you provided.
  23. - Your account credentials have been saved in your Certbot
  24. configuration directory at /etc/letsencrypt. You should make a
  25. secure backup of this folder now. This configuration directory will
  26. also contain certificates and private keys obtained by Certbot so
  27. making regular backups of this folder is ideal.
✅ Working output sample:
  1. Saving debug log to /var/log/letsencrypt/letsencrypt.log
  2. Plugins selected: Authenticator standalone, Installer None
  3. Obtaining a new certificate
  4. Performing the following challenges:
  5. http-01 challenge for my.example.com
  6. Waiting for verification
  7. Cleaning up challenges
  8. IMPORTANT NOTES:
  9. - Congratulations! Your certificate and chain have been saved at:
  10. /etc/letsencrypt/live/my.example.com/fullchain.pem
  11. Your key file has been saved at:
  12. /etc/letsencrypt/live/my.example.com/privkey.pem
  13. Your cert will expire on 2018-09-27. To obtain a new or tweaked
  14. version of this certificate in the future, simply run certbot
  15. again. To non-interactively renew all of your certificates, run
  16. "certbot renew"
  17. - If you like Certbot, please consider supporting our work by:
  18. Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate
  19. Donating to EFF: https://eff.org/donate-le

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.

  1. 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):

  1. Enter Export Password: mypassword
  2. Verifying - Enter Export Password: mypassword

With th p12 file, we can use the keytool cli to generate a JKS file:

  1. 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:

  1. ktor {
  2. deployment {
  3. port = 8889
  4. port = ${?PORT}
  5. sslPort = 8890
  6. sslPort = ${?PORT_SSL}
  7. }
  8. application {
  9. modules = [ com.example.ApplicationKt.module ]
  10. }
  11. security {
  12. ssl {
  13. keyStore = /etc/letsencrypt/live/mydomain.com/keystore.jks
  14. keyAlias = myalias
  15. keyStorePassword = mypassword
  16. privateKeyPassword = mypassword
  17. }
  18. }
  19. }

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:

  1. docker network create --driver bridge reverse-proxy

Creating an Nginx container

Now we have to create a container running NGINX doing the reverse proxy:

  1. docker rm -f nginx
  2. docker run -d -p 80:80 -p 443:443 \
  3. --name=nginx \
  4. --restart=always \
  5. --network=reverse-proxy \
  6. -v /home/virtual/nginx/certs:/etc/nginx/certs:ro \
  7. -v /home/virtual/nginx/conf.d:/etc/nginx/conf.d \
  8. -v /home/virtual/nginx/vhost.d:/etc/nginx/vhost.d \
  9. -v /home/virtual/nginx/html:/usr/share/nginx/html \
  10. -v /var/run/docker.sock:/tmp/docker.sock:ro \
  11. -e NGINX_PROXY_CONTAINER=nginx \
  12. --label com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy=true \
  13. 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:

  1. docker rm -f nginx-letsencrypt
  2. docker run -d \
  3. --name nginx-letsencrypt \
  4. --restart=always \
  5. --network=reverse-proxy \
  6. --volumes-from nginx \
  7. -v /home/virtual/nginx/certs:/etc/nginx/certs:rw \
  8. -v /var/run/docker.sock:/var/run/docker.sock:ro \
  9. 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

  1. version: '2'
  2. services:
  3. web:
  4. build:
  5. context: ./
  6. dockerfile: Dockerfile
  7. expose:
  8. - 8080
  9. environment:
  10. - VIRTUAL_HOST=mydomain.com
  11. - VIRTUAL_PORT=8080
  12. - LETSENCRYPT_HOST=mydomain.com
  13. - LETSENCRYPT_EMAIL=myemail@mydomain.com
  14. networks:
  15. - reverse-proxy
  16. restart: always
  17. networks:
  18. backend:
  19. reverse-proxy:
  20. external:
  21. name: reverse-proxyv

Dockerfile

  1. FROM openjdk:8-jre-alpine
  2. ENV APPLICATION_USER ktor
  3. RUN adduser -D -g '' $APPLICATION_USER
  4. RUN mkdir /app
  5. RUN chown -R $APPLICATION_USER /app
  6. USER $APPLICATION_USER
  7. COPY ./build/libs/my-application.jar /app/my-application.jar
  8. WORKDIR /app
  9. 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

  1. #direction: right
  2. #.internet: fill=#fee
  3. #.network: fill=#efe
  4. #.http: fill=#6f6
  5. #.ssl: fill=#6af
  6. [<internet>Internet]
  7. [<http>Nginx
  8. |port=80 (HTTP, WS)
  9. |port=443 (HTTPS and WSS)
  10. |TLS certs per domain
  11. |VIRTUAL_HOST
  12. |VIRTUAL_PORT
  13. ]
  14. [App
  15. |[port=8080 HTTP & WS]
  16. |[<http>VIRTUAL_HOST=myhost.com]
  17. |[<http>VIRTUAL_PORT=8080]
  18. |[<ssl>LETSENCRYPT_HOST=myhost.com]
  19. |[<ssl>LETSENCRYPT_EMAIL=email@myhost.com]
  20. ]
  21. [<ssl>Let's Encrypt companion
  22. |LETSENCRYPT_HOST
  23. |LETSENCRYPT_EMAIL]
  24. [Docker
  25. |port=80,443
  26. ]
  27. [Let's Encrypt] <- cert request [Let's Encrypt companion]
  28. [App] -:> [reverse-proxy]
  29. [<network>reverse-proxy|network]
  30. [Nginx] <- [reverse-proxy]
  31. [Internet] <- port 80, 443[Docker]
  32. [Docker] <- [Nginx]
  33. [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.