Compare commits

...

2 Commits

@ -118,3 +118,12 @@
- name: Enable PHP error log
command: uberspace web log php_error enable
when: "'is enabled' not in uberspace_log_php_error_status_result.stdout"
- name: Check if the 500 error page is disabled
command: uberspace web errorpage 500 status
register: uberspace_error_page_500_status_result
changed_when: no
- name: Disable 500 error page
command: uberspace web errorpage 500 disable
when: "'is disabled' not in uberspace_error_page_500_status_result.stdout"

@ -39,8 +39,9 @@ web_sites:
lukasbestle: https://git.codesignd.com/sites/lukasbestle.com.git
codesignd: null
cddweb2:
shareable: null
cdn: null
shareable: null
test: null
# Domain links to set up per host
web_links:
@ -68,3 +69,5 @@ web_links:
path: data/files
cdn.codesignd.net:
site: cdn
test.codesignd.de:
site: test

Loading…
Cancel
Save