We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
dokku nginx:set
Would be cool if support for dokku nginx:set could be added.
Right now I am doing this, which seems to work well:
- name: check client-max-body-size command: dokku nginx:report {{ app_name }} --nginx-client-max-body-size 2>/dev/null register: client_max_body_size changed_when: false - name: set client-max-body-size vars: max_filesize: 500m ansible.builtin.shell: dokku nginx:set {{ app_name }} client-max-body-size {{ max_filesize }} when: "client_max_body_size.stdout != max_filesize" notify: - Rebuild config handlers: - name: Rebuild config command: dokku proxy:build-config --all
The text was updated successfully, but these errors were encountered:
Sounds good - if anyone is interested in adding a dokku_nginx_set ansible module, I can suggest having a look e.g. at the dokku_config module
dokku_nginx_set
dokku_config
Sorry, something went wrong.
Is there any progress with it? For now, I am using a workaround like this
- name: Set Nginx Proxy Read Timeout shell: 'dokku nginx:set app-name proxy-read-timeout 300'
#169
No branches or pull requests
Would be cool if support for
dokku nginx:set
could be added.Right now I am doing this, which seems to work well:
The text was updated successfully, but these errors were encountered: