Hello there!

Need Help? We are right here!

miniOrange Support
miniOrange Email Support
success

Thanks for your Enquiry.

If you don't hear from us within 24 hours, please feel free to send a follow-up email to info@xecurify.com

Search Results:

×

SSL Setup for miniOrange PAM


To set up SSL for miniOrange PAM, please follow the steps below.

    Step 1: Update Nginx Configuration

    • Go to the PAM deployment folder.
    • Navigate to: docker_utils > nginx > nginx.conf
    • In this file:
      • Change listen 80 to: listen 443 ssl;
      • Inside the server section, add the following lines:
        • ssl_certificate /etc/nginx/ssl/<cert_file>.crt; #change the name of the .crt file

          ssl_certificate_key /etc/nginx/ssl/<ke_file>.key; #change the name of the .key file

          ssl_protocols TLSv1.2 TLSv1.3;

    Step 2: Add SSL Certificate Files

    • Inside the folder docker_utils > nginx , create a new folder named ssl: mkdir ssl.
    • Place the SSL certificate files (.crt and .key) inside this ssl folder.

    Step 3: Update docker-compose.yml

    • Open the docker-compose.yml file at the PAM deployment folder.
    • Under the nginx service section, add the following line under volumes:
    • ./docker_utils/nginx/ssl:/etc/nginx/ssl

    Step 4: Restart the Service

    • Once all the above changes are completed, run the following command:
    • docker compose up -d nginx
    • Your SSL setup will then be completed.