mother-of-all-self-hosting / mash-playbook

🐋 Ansible playbook which helps you host various FOSS services as Docker containers on your own server
GNU Affero General Public License v3.0
455 stars 53 forks source link

Collabora page is blank showing only an "OK" #89

Closed aik2mlj closed 1 year ago

aik2mlj commented 1 year ago

Hi! I just did a mash setup with nextcloud, redis and collabora on a fresh ubuntu 22.04 vm. The collabora page only returns a blank page with "OK" on it and nothing else. And I cannot open document files in nextcloud office after running the command just run-tags install-nextcloud-app-collabora.

image

Here is my var.yml:

########################################################################
#                                                                      #
# nextcloud                                                            #
#                                                                      #
########################################################################

nextcloud_enabled: true

nextcloud_hostname: cloud.mydom.com

nextcloud_redis_hostname: "{{ redis_identifier }}"

nextcloud_systemd_required_services_list_custom:
  - "{{ redis_identifier }}.service"

nextcloud_container_additional_networks_custom:
  - "{{ redis_identifier }}"

nextcloud_collabora_app_wopi_url: "{{ collabora_online_url }}"

########################################################################
#                                                                      #
# /nextcloud                                                           #
#                                                                      #
########################################################################

########################################################################
#                                                                      #
# redis                                                                #
#                                                                      #
########################################################################

redis_enabled: true

########################################################################
#                                                                      #
# /redis                                                               #
#                                                                      #
########################################################################

########################################################################
#                                                                      #
# collabora-online                                                     #
#                                                                      #
########################################################################

collabora_online_enabled: true

collabora_online_hostname: collabora.mydom.com

collabora_online_env_variable_password: 'mypasswd'

collabora_online_aliasgroup: "https://{{ nextcloud_hostname | replace('.', '\\.') }}:443"

########################################################################
#                                                                      #
# /collabora-online                                                    #
#                                                                      #
########################################################################
feydreva commented 1 year ago

hello, this is normal behaviour. once you have collabora installed, you need to install nextcloud office in nextcloud app, and point it to your collabora adress

aik2mlj commented 1 year ago

@feydreva Thanks! I have made it work now!