docker-airflow
docker-airflow copied to clipboard
SSL HTTPS for airflow
i tired creating SSL for my airflow by this commands
openssl genrsa -out private.pem 2048 openssl req -new -x509 -key private.pem -out cacert.pem -days 1095
made this changes on cfg web_server_ssl_cert = path/to/cacert.pem web_server_ssl_key = path/to/private.pem
but when i try accesing though https This site can’t be reached
same problem for me
You need to change also the listening port for the service because the default is not 443.
Ref: https://airflow.apache.org/docs/stable/security.html#ssl
@yogesh-reddy did you find any resolution yet ?
@sumit-rawat-quo nothing as of now