forked from bashclub/zamba-lxc-toolbox
		
	onlyoffice
This commit is contained in:
		@@ -1,18 +1,26 @@
 | 
				
			|||||||
source /root/zamba.conf
 | 
					source /root/zamba.conf
 | 
				
			||||||
source /root/constants-service.conf
 | 
					source /root/constants-service.conf
 | 
				
			||||||
ONLYOFFICE_DB_PASSWORD=$(source /root/postgresql.sh 13 $ONLYOFFICE_DB_NAME $ONLYOFFICE_DB_USER)
 | 
					
 | 
				
			||||||
source /root/rabbitmq-server.sh
 | 
					ONLYOFFICE_DB_PASS=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys CB2DE8E5
 | 
					apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys CB2DE8E5
 | 
				
			||||||
echo "deb https://download.onlyoffice.com/repo/debian squeeze main" > /etc/apt/sources.list.d/onlyoffice.list
 | 
					echo "deb https://download.onlyoffice.com/repo/debian squeeze main" > /etc/apt/sources.list.d/onlyoffice.list
 | 
				
			||||||
 | 
					
 | 
				
			||||||
apt update
 | 
					apt update 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt install -y -qq postgresql rabbitmq-server libstdc++6 supervisor
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					su postgres <<EOF
 | 
				
			||||||
 | 
					psql -c "CREATE USER $ONLYOFFICE_DB_USER WITH PASSWORD '$ONLYOFFICE_DB_PASS';"
 | 
				
			||||||
 | 
					psql -c "CREATE DATABASE $ONLYOFFICE_DB_NAME ENCODING 'UTF8' LC_COLLATE='C' LC_CTYPE='C' template=template0 OWNER $ONLYOFFICE_DB_USER;"
 | 
				
			||||||
 | 
					echo "Postgres User '$ONLYOFFICE_DB_USER' and database '$ONLYOFFICE_DB_NAME' created."
 | 
				
			||||||
 | 
					EOF
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo onlyoffice-documentserver onlyoffice/ds-port select 80 | debconf-set-selections
 | 
					echo onlyoffice-documentserver onlyoffice/ds-port select 80 | debconf-set-selections
 | 
				
			||||||
echo onlyoffice-documentserver onlyoffice/db-host string $ONLYOFFICE_DB_HOST | sudo debconf-set-selections
 | 
					echo onlyoffice-documentserver onlyoffice/db-host string $ONLYOFFICE_DB_HOST | debconf-set-selections
 | 
				
			||||||
echo onlyoffice-documentserver onlyoffice/db-user string $ONLYOFFICE_DB_NAME | sudo debconf-set-selections
 | 
					echo onlyoffice-documentserver onlyoffice/db-user string $ONLYOFFICE_DB_NAME | debconf-set-selections
 | 
				
			||||||
echo onlyoffice-documentserver onlyoffice/db-name string $ONLYOFFICE_DB_USER | sudo debconf-set-selections
 | 
					echo onlyoffice-documentserver onlyoffice/db-name string $ONLYOFFICE_DB_USER | debconf-set-selections
 | 
				
			||||||
echo onlyoffice-documentserver onlyoffice/db-pwd password $ONLYOFFICE_DB_PASSWORD | debconf-set-selections
 | 
					echo onlyoffice-documentserver onlyoffice/db-pwd password $ONLYOFFICE_DB_PASS | debconf-set-selections
 | 
				
			||||||
 | 
					
 | 
				
			||||||
DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt -y -qq install ttf-mscorefonts-installer onlyoffice-documentserver
 | 
					DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt -y -qq install ttf-mscorefonts-installer onlyoffice-documentserver
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -20,7 +28,7 @@ cat << EOF > /root/onlyoffice.credentials
 | 
				
			|||||||
ONLYOFFICE_DB_HOST=$ONLYOFFICE_DB_HOST
 | 
					ONLYOFFICE_DB_HOST=$ONLYOFFICE_DB_HOST
 | 
				
			||||||
ONLYOFFICE_DB_NAME=$ONLYOFFICE_DB_NAME
 | 
					ONLYOFFICE_DB_NAME=$ONLYOFFICE_DB_NAME
 | 
				
			||||||
ONLYOFFICE_DB_USER=$ONLYOFFICE_DB_USER
 | 
					ONLYOFFICE_DB_USER=$ONLYOFFICE_DB_USER
 | 
				
			||||||
ONLYOFFICE_DB_PASSWORD=$ONLYOFFICE_DB_PASSWORD
 | 
					ONLYOFFICE_DB_PASS=$ONLYOFFICE_DB_PASS
 | 
				
			||||||
EOF
 | 
					EOF
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/etc/nginx/conf.d/ds.conf
 | 
					/etc/nginx/conf.d/ds.conf
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user