Hi,
I’ve successfully configured ood without ssl. Now i want to change from http to https. What i did in ood_portal.yml is
add this section at the top
ssl:
- 'SSLCertificateFile "/etc/pki/tls/certs/full_chain.pem"'
- 'SSLCertificateKeyFile "/etc/pki/tls/private/server.key"'
add this section under dex:
dex:
# Default based on if ssl key for ood-portal-generator is defined
ssl: true
# Only used if SSL is disabled
http_port: "5556"
# Only used if SSL is enabled
https_port: "5554"
tls_cert: "/etc/pki/tls/certs/full_chain.pem"
tls_key: "/etc/pki/tls/private/server.key"
After this i restart ondemand-dex and httpd but I can’t open default page and in error.log show
[Tue Jan 28 15:46:11.989635 2025] [auth_openidc:warn] [pid 2123787:tid 140096623929088] [client 10.128.1.10:43060] oidc_clean_expired_state_cookies: state (mod_auth_openidc_state_S3XEss45S7ZOYXyrvsh9qFLzYlY) has expired (original_url=http://raptor.med.cmu.ac.th:9000/pun/sys/dashboard)
I tried to check port on dex but it still using 5556 which is http.
tcp LISTEN 0 2048 127.0.0.1:5556 0.0.0.0:* users:(("ondemand-dex",pid=2123687,fd=9))
Please help
Thanks