Maciej Delmanowski
Maciej Delmanowski
Yup, I know about the variable rename. Currently `debops.ferm` still supports old variables and it will do so for some time, until all other roles are updated. Thanks for the...
To disable default redirection to HTTPS version of the site, set `item.ssl: False` in the server configuration: ``` nginx_server_super: enabled: True type: 'php5' name: ['super.example.com'] ssl: False ``` The `item.redirect_to_ssl`...
Can you give an example of how that config would look like?
Actually, you can, it's just a little more complicated: In `inventory/group_vars/backend-servers/nginx.yml` put: ``` yaml nginx_servers: [ '{{ nginx_backend_server }}' ] nginx_backend_server: name: [ 'backend.{{ ansible_domain }}' ] enabled: True ```...
@carlalexander Since I've got your attention, two ideas I'm thinking about regarding `debops.nginx`: - what do you think about adding `nginx_internal_servers` variable similar to `nginx_servers` and moving the default server,...
Sure, default server could stay in `nginx_servers` to be easier to override.
I'm afraid the above solutions aren't the correct ones in this problem, because problem is completely elsewhere. But if I tell you that it's just lack of a default certificates...
I assume that you have each environment in a separate DebOps project directory. Ansible Controller is your laptop, and a webserver is somewhere in the cloud. Here's how you could...
Sure, might be good idea to store the username in secrets, however that would need to be set by the user in inventory. I'll look what can be done. Also,...
@muelli I don't want to use `debug` module in the roles directly, this breaks confidentiality of the GitLab passwords stored in secrets. IMO this would be better done by emailing...