Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Allows certificate download via the dashboard #352

Merged
merged 1 commit into from
Dec 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ server {
try_files $uri /index.html =404;
}

error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
# Serve certificates from /app/codegate_volume/certs at /certificates
location /certificates/codegate_ca.crt {
alias /app/codegate_volume/certs/ca.crt;
types { application/x-x509-ca-cert crt; }
default_type application/x-x509-ca-cert;
}

error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
}
Loading