-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#97 #100 SSL reverse proxies with apache and nginx for FireEdge #101
base: master
Are you sure you want to change the base?
Conversation
roles/gui/tasks/main.yml
Outdated
- name: Install Web Server | ||
ansible.builtin.include_tasks: | ||
file: "{{ role_path }}/tasks/{{ ssl.web_server }}.yml" | ||
when: ssl.web_server in ['nginx', 'apache'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
when: ssl.web_server in ['nginx', 'apache'] |
IMO this should be asserted in precheck, and then I'd let it simply fail here. 🤔
molecule/passenger-ha/molecule.yml
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it should be renamed from passenger-ha to ssl-ha, no? 🤔
roles/gui/tasks/apache.yml
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
register: service_sunstone
can be removed I guess 🤔
With Ruby Sunstone deprecated on 6.10. FireEdge is now being served as the web UI on the web server of choice. apache and nginx as reverse proxies with ssl termination are the only choices contemplated at the moment.
Updated the GUI role and its references
ssl
variablessl
includes the web server of choice. The no ssl option has been removed.Closes #97
Closes #100