Skip to content

Commit

Permalink
fix(docker): use fullchain ssl cert for dedicated server
Browse files Browse the repository at this point in the history
This was preventing clients from joining official servers as the cert didn't include the full cert chain.
  • Loading branch information
Jibbajabbafic committed May 29, 2023
1 parent 3174e46 commit 73f546a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN wget https://github.com/godotengine/godot/releases/download/${GODOT_VERSION}

# Create links to the HTTPS certs which will be mounted when hosting
RUN mkdir -p ~/.local/share/godot/app_userdata/Flappy\ Race/certs \
&& ln -s /secrets/live/jibby.localhost/cert.pem ~/.local/share/godot/app_userdata/Flappy\ Race/certs/X509_certificate.crt \
&& ln -s /secrets/live/jibby.localhost/fullchain.pem ~/.local/share/godot/app_userdata/Flappy\ Race/certs/X509_certificate.crt \
&& ln -s /secrets/live/jibby.localhost/privkey.pem ~/.local/share/godot/app_userdata/Flappy\ Race/certs/X509_key.key

# Copy the exported .pck and run it
Expand Down

0 comments on commit 73f546a

Please sign in to comment.