Compare commits
11 Commits
0.5.0
...
server-24.
Author | SHA1 | Date | |
---|---|---|---|
c7fd45b47f
|
|||
8ff2a5878e
|
|||
b02037f743
|
|||
63a291121a
|
|||
69d76f3342
|
|||
f465c5d792
|
|||
29a145fe42
|
|||
f27abe9e42
|
|||
e76e4beac0
|
|||
b40bd1a383
|
|||
6acf6314eb
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
|
||||
nextcloud_nginx_version: "1.21.3"
|
||||
nextcloud_nginx_version: "1.23.2"
|
||||
nextcloud_nginx_basepath: /opt/nextcloud-nginx
|
||||
nextcloud_nginx_config: "{{ nextcloud_nginx_basepath }}/nextcloud.conf"
|
||||
nextcloud_nginx_servernames: ~
|
||||
|
@ -1,6 +1,12 @@
|
||||
upstream php-handler {
|
||||
{% if fpm_socket %}
|
||||
{% if fpm_socket is not string %}
|
||||
{% for upstream in fpm_socket %}
|
||||
server unix:{{ upstream }};
|
||||
{% endfor %}
|
||||
{% else %}
|
||||
server unix:{{ fpm_socket }};
|
||||
{% endif %}
|
||||
{% else %}
|
||||
server {{ fpm_server }}:{{ fpm_server_port }};
|
||||
{% endif %}
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
|
||||
nextcloud_version: 23.0.0
|
||||
nextcloud_version: 24.0.9
|
||||
nextcloud_user: nextcloud
|
||||
nextcloud_basepath: /opt/nextcloud
|
||||
nextcloud_config_path: "{{ nextcloud_basepath }}/config"
|
||||
|
@ -4,7 +4,7 @@ user = www-data
|
||||
group = www-data
|
||||
|
||||
{% if nextcloud_socket_path is defined and nextcloud_socket_path is string %}
|
||||
listen = {{ nextcloud_container_php_socket_path }}/nextcloud.sock
|
||||
listen = {{ nextcloud_container_php_socket_path }}/{{ nextcloud_container_name }}.sock
|
||||
listen.owner = www-data
|
||||
listen.group = www-data
|
||||
listen.mode = 0666
|
||||
|
Reference in New Issue
Block a user