Compare commits
3 Commits
master
...
wip/hotfix
Author | SHA1 | Date |
---|---|---|
Laurent Gourvenec | c9b6f359be | |
Laurent Gourvenec | f1f7570864 | |
Laurent Gourvenec | 3d11c50b0a |
|
@ -82,6 +82,7 @@ hydra_dispatcher_available_locales:
|
||||||
- en
|
- en
|
||||||
hydra_dispatcher_sentry_dsn:
|
hydra_dispatcher_sentry_dsn:
|
||||||
hydra_dispatcher_sentry_environment:
|
hydra_dispatcher_sentry_environment:
|
||||||
|
hydra_dispatcher_redis_dsn:
|
||||||
hydra_dispatcher_mounts: []
|
hydra_dispatcher_mounts: []
|
||||||
hydra_dispatcher_disable_app_auto_select: true
|
hydra_dispatcher_disable_app_auto_select: true
|
||||||
hydra_dispatcher_webhook: false
|
hydra_dispatcher_webhook: false
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
# prefork MPM
|
||||||
|
|
||||||
|
<IfModule mpm_prefork_module>
|
||||||
|
StartServers 10
|
||||||
|
MinSpareServers 10
|
||||||
|
MaxSpareServers 20
|
||||||
|
MaxRequestWorkers 128
|
||||||
|
MaxConnectionsPerChild 2000
|
||||||
|
</IfModule>
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
{%- raw -%}
|
||||||
|
[www]
|
||||||
|
user = www-data
|
||||||
|
group = www-data
|
||||||
|
|
||||||
|
listen = {{ env.Getenv "PHP_FPM_LISTEN" "/tmp/php-fpm.sock" }}
|
||||||
|
listen.owner = www-data
|
||||||
|
listen.group = www-data
|
||||||
|
listen.mode = 0660
|
||||||
|
|
||||||
|
pm = dynamic
|
||||||
|
pm.max_children = {{ env.Getenv "PHP_FPM_MAX_CHILDREN" "5" }}
|
||||||
|
pm.start_servers = {{ env.Getenv "PHP_FPM_START_SERVERS" "2" }}
|
||||||
|
pm.min_spare_servers = {{ env.Getenv "PHP_FPM_MIN_SPARE_SERVERS" "1" }}
|
||||||
|
pm.max_spare_servers = {{ env.Getenv "PHP_FPM_MAX_SPARE_SERVERS" "3" }}
|
||||||
|
|
||||||
|
pm.status_path = /healthcheck
|
||||||
|
pm.status_listen = 127.0.0.1:8091
|
||||||
|
|
||||||
|
clear_env = no
|
||||||
|
|
||||||
|
php_admin_value[display_errors] = {{ env.Getenv "PHP_FPM_DISPLAY_ERRORS" "off" }}
|
||||||
|
php_admin_value[memory_limit] = {{ env.Getenv "PHP_FPM_MEMORY_LIMIT" "32m" }}
|
||||||
|
{% endraw %}
|
|
@ -27,8 +27,13 @@
|
||||||
|
|
||||||
- name: Configure cadoles-pod-hydra-remote-user-v1 (2)
|
- name: Configure cadoles-pod-hydra-remote-user-v1 (2)
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: hydra-remote-user-v1-apache.conf
|
src: "{{ item.src }}"
|
||||||
dest: /etc/hydra-remote-user/apache.conf
|
dest: "{{ item.dest }}"
|
||||||
|
with_items:
|
||||||
|
- src: hydra-remote-user-v1-apache.conf
|
||||||
|
dest: /etc/hydra-remote-user/apache.conf
|
||||||
|
- src: mpm_prefork.conf
|
||||||
|
dest: /etc/hydra-remote-user/mpm_prefork.conf
|
||||||
notify:
|
notify:
|
||||||
- Restart cadoles-pod-hydra-remote-user-v1
|
- Restart cadoles-pod-hydra-remote-user-v1
|
||||||
become: true
|
become: true
|
||||||
|
|
|
@ -85,6 +85,17 @@
|
||||||
- Restart cadoles-pod-hydra-dispatcher-v1
|
- Restart cadoles-pod-hydra-dispatcher-v1
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
|
- name: Configure cadoles-pod-hydra-dispatcher-v1 (2)
|
||||||
|
ansible.builtin.copy:
|
||||||
|
src: "{{ item.src }}"
|
||||||
|
dest: "{{ item.dest }}"
|
||||||
|
with_items:
|
||||||
|
- src: www.conf.gotmpl
|
||||||
|
dest: /etc/hydra-dispatcher/www.conf.gotmpl
|
||||||
|
notify:
|
||||||
|
- Restart cadoles-pod-hydra-dispatcher-v1
|
||||||
|
become: true
|
||||||
|
|
||||||
- name: Configure passwordless authentification if enabled
|
- name: Configure passwordless authentification if enabled
|
||||||
ansible.builtin.include_tasks: hydra-passwordless.yml
|
ansible.builtin.include_tasks: hydra-passwordless.yml
|
||||||
when: enable_hydra_passwordless
|
when: enable_hydra_passwordless
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
name:
|
name:
|
||||||
- cadoles-pod-hydra-dispatcher-v1={{ cadoles_pod_hydra_dispatcher_v1_package_version }}
|
- cadoles-pod-hydra-dispatcher-v1={{ cadoles_pod_hydra_dispatcher_v1_package_version }}
|
||||||
update_cache: yes
|
update_cache: yes
|
||||||
|
allow_downgrade: true
|
||||||
state: present
|
state: present
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
|
@ -23,3 +24,14 @@
|
||||||
notify:
|
notify:
|
||||||
- Restart cadoles-pod-hydra-dispatcher-v1
|
- Restart cadoles-pod-hydra-dispatcher-v1
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
|
- name: Configure cadoles-pod-hydra-dispatcher-v1 (2)
|
||||||
|
ansible.builtin.copy:
|
||||||
|
src: "{{ item.src }}"
|
||||||
|
dest: "{{ item.dest }}"
|
||||||
|
with_items:
|
||||||
|
- src: www.conf.gotmpl
|
||||||
|
dest: /etc/hydra-dispatcher/www.conf.gotmpl
|
||||||
|
notify:
|
||||||
|
- Restart cadoles-pod-hydra-dispatcher-v1
|
||||||
|
become: true
|
||||||
|
|
|
@ -26,8 +26,13 @@
|
||||||
|
|
||||||
- name: Configure cadoles-pod-hydra-remote-user-v1 (2)
|
- name: Configure cadoles-pod-hydra-remote-user-v1 (2)
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: hydra-remote-user-v1-apache.conf
|
src: "{{ item.src }}"
|
||||||
dest: /etc/hydra-remote-user/apache.conf
|
dest: "{{ item.dest }}"
|
||||||
|
with_items:
|
||||||
|
- src: hydra-remote-user-v1-apache.conf
|
||||||
|
dest: /etc/hydra-remote-user/apache.conf
|
||||||
|
- src: mpm_prefork.conf
|
||||||
|
dest: /etc/hydra-remote-user/mpm_prefork.conf
|
||||||
notify:
|
notify:
|
||||||
- Restart cadoles-pod-hydra-remote-user-v1
|
- Restart cadoles-pod-hydra-remote-user-v1
|
||||||
become: true
|
become: true
|
||||||
|
|
|
@ -20,8 +20,15 @@ PODMAN_ARGS="\
|
||||||
-e 'TRUSTED_PROXIES=127.0.0.1,10.0.2.0/24' \
|
-e 'TRUSTED_PROXIES=127.0.0.1,10.0.2.0/24' \
|
||||||
-e 'SENTRY_DSN={{ hydra_dispatcher_sentry_dsn }}' \
|
-e 'SENTRY_DSN={{ hydra_dispatcher_sentry_dsn }}' \
|
||||||
-e 'SENTRY_ENVIRONMENT={{ hydra_dispatcher_sentry_environment }}' \
|
-e 'SENTRY_ENVIRONMENT={{ hydra_dispatcher_sentry_environment }}' \
|
||||||
|
-e 'REDIS_DSN={{ hydra_dispatcher_redis_dsn }}' \
|
||||||
|
--mount type=tmpfs,tmpfs-size=512M,destination=/app/var/cache \
|
||||||
-e 'DISABLE_APP_AUTO_SELECT={{ hydra_dispatcher_disable_app_auto_select }}' \
|
-e 'DISABLE_APP_AUTO_SELECT={{ hydra_dispatcher_disable_app_auto_select }}' \
|
||||||
-e 'PHP_FPM_MEMORY_LIMIT=128m' \
|
-e 'PHP_FPM_MEMORY_LIMIT=128m' \
|
||||||
|
-e 'PHP_FPM_MAX_CHILDREN=128' \
|
||||||
|
-e 'PHP_FPM_START_SERVERS=42' \
|
||||||
|
-e 'PHP_FPM_MIN_SPARE_SERVERS=24' \
|
||||||
|
-e 'PHP_FPM_MAX_SPARE_SERVERS=64' \
|
||||||
|
-v /etc/hydra-dispatcher/www.conf.gotmpl:/etc/php81/php-fpm.d/www.conf.gotmpl \
|
||||||
-v /etc/hydra-dispatcher/conf.d:/app/config/hydra \
|
-v /etc/hydra-dispatcher/conf.d:/app/config/hydra \
|
||||||
{% for item in hydra_dispatcher_mounts %}
|
{% for item in hydra_dispatcher_mounts %}
|
||||||
-v {{ item.host }}:{{ item.container }} \
|
-v {{ item.host }}:{{ item.container }} \
|
||||||
|
|
|
@ -6,6 +6,7 @@ PODMAN_ARGS="\
|
||||||
--tz=local \
|
--tz=local \
|
||||||
-v /etc/hydra-remote-user/conf.d:/var/www/config/remote_user \
|
-v /etc/hydra-remote-user/conf.d:/var/www/config/remote_user \
|
||||||
-v /etc/hydra-remote-user/apache.conf:/etc/apache2/sites-available/000-default.conf \
|
-v /etc/hydra-remote-user/apache.conf:/etc/apache2/sites-available/000-default.conf \
|
||||||
|
-v /etc/hydra-remote-user/mpm_prefork.conf:/etc/apache2/mods-available/mpm_prefork.conf \
|
||||||
-v /etc/hosts:/etc/hosts:ro \
|
-v /etc/hosts:/etc/hosts:ro \
|
||||||
-e APP_ENV=prod \
|
-e APP_ENV=prod \
|
||||||
-e 'APP_DEBUG={{ hydra_saml_debug }}' \
|
-e 'APP_DEBUG={{ hydra_saml_debug }}' \
|
||||||
|
|
Loading…
Reference in New Issue