freedombone-app-nextcloud 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # nextcloud application
  12. # In tests this is much too slow, and it appeared to self-destruct after a few minutes
  13. # i.e. becoming totally unusable.
  14. #
  15. # License
  16. # =======
  17. #
  18. # Copyright (C) 2017 Bob Mottram <bob@freedombone.net>
  19. #
  20. # This program is free software: you can redistribute it and/or modify
  21. # it under the terms of the GNU Affero General Public License as published by
  22. # the Free Software Foundation, either version 3 of the License, or
  23. # (at your option) any later version.
  24. #
  25. # This program is distributed in the hope that it will be useful,
  26. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  27. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  28. # GNU Affero General Public License for more details.
  29. #
  30. # You should have received a copy of the GNU Affero General Public License
  31. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  32. VARIANTS='full full-vim cloud'
  33. IN_DEFAULT_INSTALL=0
  34. SHOW_ON_ABOUT=1
  35. NEXTCLOUD_DOMAIN_NAME=
  36. NEXTCLOUD_CODE=
  37. NEXTCLOUD_ONION_PORT=8112
  38. NEXTCLOUD_REPO="https://github.com/nextcloud/server"
  39. # Stable 12 branch
  40. NEXTCLOUD_COMMIT='cd095bb0b85eed6a9a9f6f0f7d10f2366c4667a7'
  41. NEXTCLOUD_ADMIN_PASSWORD=
  42. nextcloud_variables=(ONION_ONLY
  43. NEXTCLOUD_DOMAIN_NAME
  44. NEXTCLOUD_CODE
  45. DDNS_PROVIDER
  46. MY_USERNAME)
  47. function logging_on_nextcloud {
  48. echo -n ''
  49. }
  50. function logging_off_nextcloud {
  51. echo -n ''
  52. }
  53. function remove_user_nextcloud {
  54. remove_username="$1"
  55. ${PROJECT_NAME}-pass -u $remove_username --rmapp nextcloud
  56. }
  57. function add_user_nextcloud {
  58. new_username="$1"
  59. new_user_password="$2"
  60. ${PROJECT_NAME}-pass -u $new_username -a nextcloud -p "$new_user_password"
  61. echo '0'
  62. }
  63. function change_password_nextcloud {
  64. curr_username="$1"
  65. export OC_PASS="$2"
  66. su -s /bin/sh www-data -c "php occ user:resetpassword --password-from-env $curr_username"
  67. ${PROJECT_NAME}-pass -u $curr_username -a nextcloud -p "$OC_PASS"
  68. export OC_PASS=""
  69. }
  70. function install_interactive_nextcloud {
  71. if [ ! $ONION_ONLY ]; then
  72. ONION_ONLY='no'
  73. fi
  74. if [[ $ONION_ONLY != "no" ]]; then
  75. NEXTCLOUD_DOMAIN_NAME='nextcloud.local'
  76. else
  77. NEXTCLOUD_DETAILS_COMPLETE=
  78. while [ ! $NEXTCLOUD_DETAILS_COMPLETE ]
  79. do
  80. data=$(tempfile 2>/dev/null)
  81. trap "rm -f $data" 0 1 2 5 15
  82. if [[ $DDNS_PROVIDER == "default@freedns.afraid.org" ]]; then
  83. dialog --backtitle $"Freedombone Configuration" \
  84. --title $"NextCloud Configuration" \
  85. --form $"\nPlease enter your NextCloud details.\n\nIMPORTANT: This should be a domain name which is supported by Let's Encrypt:" 13 65 3 \
  86. $"Domain:" 1 1 "$(grep 'NEXTCLOUD_DOMAIN_NAME' temp.cfg | awk -F '=' '{print $2}')" 1 15 40 40 \
  87. $"Code:" 2 1 "$(grep 'NEXTCLOUD_CODE' temp.cfg | awk -F '=' '{print $2}')" 2 15 40 255 \
  88. 2> $data
  89. else
  90. dialog --backtitle $"Freedombone Configuration" \
  91. --title $"NextCloud Configuration" \
  92. --form $"\nPlease enter your NextCloud details. The background image URL can be left blank.\n\nIMPORTANT: This should be a domain name which is supported by Let's Encrypt:" 13 65 2 \
  93. $"Domain:" 1 1 "$(grep 'NEXTCLOUD_DOMAIN_NAME' temp.cfg | awk -F '=' '{print $2}')" 1 15 40 40 \
  94. 2> $data
  95. fi
  96. sel=$?
  97. case $sel in
  98. 1) exit 1;;
  99. 255) exit 1;;
  100. esac
  101. NEXTCLOUD_DOMAIN_NAME=$(cat $data | sed -n 1p)
  102. if [ ${#img_url} -gt 1 ]; then
  103. NEXTCLOUD_BACKGROUND_IMAGE_URL=$img_url
  104. fi
  105. if [ $NEXTCLOUD_DOMAIN_NAME ]; then
  106. TEST_DOMAIN_NAME=$NEXTCLOUD_DOMAIN_NAME
  107. validate_domain_name
  108. if [[ $TEST_DOMAIN_NAME != $NEXTCLOUD_DOMAIN_NAME ]]; then
  109. NEXTCLOUD_DOMAIN_NAME=
  110. dialog --title $"Domain name validation" --msgbox "$TEST_DOMAIN_NAME" 15 50
  111. else
  112. if [[ $DDNS_PROVIDER == "default@freedns.afraid.org" ]]; then
  113. NEXTCLOUD_CODE=$(cat $data | sed -n 2p)
  114. validate_freedns_code "$NEXTCLOUD_CODE"
  115. if [ ! $VALID_CODE ]; then
  116. NEXTCLOUD_DOMAIN_NAME=
  117. fi
  118. fi
  119. fi
  120. fi
  121. if [ $NEXTCLOUD_DOMAIN_NAME ]; then
  122. NEXTCLOUD_DETAILS_COMPLETE="yes"
  123. fi
  124. done
  125. # remove any invalid characters
  126. if [ ${#NEXTCLOUD_TITLE} -gt 0 ]; then
  127. new_title=$(echo "$NEXTCLOUD_TITLE" | sed "s|'||g")
  128. NEXTCLOUD_TITLE="$new_title"
  129. fi
  130. # save the results in the config file
  131. write_config_param "NEXTCLOUD_CODE" "$NEXTCLOUD_CODE"
  132. fi
  133. write_config_param "NEXTCLOUD_DOMAIN_NAME" "$NEXTCLOUD_DOMAIN_NAME"
  134. APP_INSTALLED=1
  135. }
  136. function change_password_nextcloud {
  137. curr_username="$1"
  138. new_user_password="$2"
  139. read_config_param ${NEXTCLOUD_DOMAIN_NAME}
  140. ${PROJECT_NAME}-pass -u "$curr_username" -a nextcloud -p "$new_user_password"
  141. }
  142. function nextcloud_create_database {
  143. if [ -f $IMAGE_PASSWORD_FILE ]; then
  144. NEXTCLOUD_ADMIN_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
  145. else
  146. if [ ! $NEXTCLOUD_ADMIN_PASSWORD ]; then
  147. NEXTCLOUD_ADMIN_PASSWORD="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
  148. fi
  149. fi
  150. if [ ! $NEXTCLOUD_ADMIN_PASSWORD ]; then
  151. return
  152. fi
  153. function_check create_database
  154. create_database nextcloud "$NEXTCLOUD_ADMIN_PASSWORD" $MY_USERNAME
  155. }
  156. function reconfigure_nextcloud {
  157. echo -n ''
  158. }
  159. function configure_interactive_nextcloud {
  160. echo -n ''
  161. }
  162. function upgrade_nextcloud_base {
  163. chown -R www-data:www-data /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs
  164. chown -R www-data:www-data /var/www/$NEXTCLOUD_DOMAIN_NAME/data
  165. cd /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs
  166. sudo -u www-data ./occ maintenance:repair
  167. sudo -u www-data ./occ files:cleanup
  168. sudo -u www-data ./occ files:scan --all
  169. sudo -u www-data ./occ maintenance:mode --off
  170. }
  171. function upgrade_nextcloud {
  172. CURR_NEXTCLOUD_COMMIT=$(get_completion_param "nextcloud commit")
  173. if [[ "$CURR_NEXTCLOUD_COMMIT" == "$NEXTCLOUD_COMMIT" ]]; then
  174. upgrade_nextcloud_base
  175. return
  176. fi
  177. if grep -q "nextcloud domain" $COMPLETION_FILE; then
  178. NEXTCLOUD_DOMAIN_NAME=$(get_completion_param "nextcloud domain")
  179. fi
  180. # update to the next commit
  181. function_check set_repo_commit
  182. set_repo_commit /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs "nextcloud commit" "$NEXTCLOUD_COMMIT" $NEXTCLOUD_REPO
  183. upgrade_nextcloud_base
  184. sudo -u www-data ./occ upgrade
  185. }
  186. function backup_local_nextcloud {
  187. NEXTCLOUD_DOMAIN_NAME='nextcloud'
  188. if grep -q "nextcloud domain" $COMPLETION_FILE; then
  189. NEXTCLOUD_DOMAIN_NAME=$(get_completion_param "nextcloud domain")
  190. fi
  191. source_directory=/var/www/${NEXTCLOUD_DOMAIN_NAME}/data
  192. if [ -d $source_directory ]; then
  193. function_check suspend_site
  194. suspend_site ${NEXTCLOUD_DOMAIN_NAME}
  195. dest_directory=nextcloudfiles
  196. function_check backup_directory_to_usb
  197. backup_directory_to_usb $source_directory $dest_directory
  198. source_directory=/var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config
  199. dest_directory=nextcloudconfig
  200. backup_directory_to_usb $source_directory $dest_directory
  201. function_check backup_database_to_usb
  202. backup_database_to_usb nextcloud
  203. function_check restart_site
  204. restart_site
  205. fi
  206. }
  207. function restore_local_nextcloud {
  208. if ! grep -q "nextcloud domain" $COMPLETION_FILE; then
  209. return
  210. fi
  211. NEXTCLOUD_DOMAIN_NAME=$(get_completion_param "nextcloud domain")
  212. if [ $NEXTCLOUD_DOMAIN_NAME ]; then
  213. temp_restore_dir=/root/tempnextcloud
  214. function_check nextcloud_create_database
  215. nextcloud_create_database
  216. restore_database nextcloud ${NEXTCLOUD_DOMAIN_NAME}
  217. temp_restore_dir=/root/tempnextcloudfiles
  218. restore_directory_from_usb $temp_restore_dir nextcloudfiles
  219. if [ -d $temp_restore_dir/var/www/${NEXTCLOUD_DOMAIN_NAME}/data ]; then
  220. cp -r $temp_restore_dir/var/www/${NEXTCLOUD_DOMAIN_NAME}/data /var/www/${NEXTCLOUD_DOMAIN_NAME}/
  221. else
  222. cp -r $temp_restore_dir/* /var/www/${NEXTCLOUD_DOMAIN_NAME}/
  223. fi
  224. if [ ! "$?" = "0" ]; then
  225. set_user_permissions
  226. backup_unmount_drive
  227. exit 346723
  228. fi
  229. rm -rf ${temp_restore_dir}
  230. temp_restore_dir=/root/tempnextcloudconfig
  231. restore_directory_from_usb $temp_restore_dir nextcloudconfig
  232. if [ -d $temp_restore_dir/var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config ]; then
  233. cp -r $temp_restore_dir/var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs
  234. else
  235. cp -r $temp_restore_dir/* /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config/
  236. fi
  237. if [ ! "$?" = "0" ]; then
  238. set_user_permissions
  239. backup_unmount_drive
  240. exit 3467343
  241. fi
  242. rm -rf ${temp_restore_dir}
  243. chown -R www-data:www-data /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs
  244. chown -R www-data:www-data /var/www/${NEXTCLOUD_DOMAIN_NAME}/data
  245. cd $nextcloud_dir
  246. sudo -u www-data ./occ maintenance:repair
  247. sudo -u www-data ./occ files:cleanup
  248. sudo -u www-data ./occ files:scan --all
  249. fi
  250. }
  251. function backup_remote_nextcloud {
  252. if grep -q "nextcloud domain" $COMPLETION_FILE; then
  253. NEXTCLOUD_DOMAIN_NAME=$(get_completion_param "nextcloud domain")
  254. temp_backup_dir=/var/www/${NEXTCLOUD_DOMAIN_NAME}/data
  255. if [ -d $temp_backup_dir ]; then
  256. function_check suspend_site
  257. suspend_site ${NEXTCLOUD_DOMAIN_NAME}
  258. function_check backup_database_to_friend
  259. backup_database_to_friend nextcloud
  260. function_check backup_directory_to_friend
  261. backup_directory_to_friend $temp_backup_dir nextclouddata
  262. temp_backup_dir=/var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config
  263. backup_directory_to_friend $temp_backup_dir nextcloudconfig
  264. function_check restart_site
  265. restart_site
  266. else
  267. echo $"nextcloud domain specified but not found in ${temp_backup_dir}"
  268. fi
  269. fi
  270. }
  271. function restore_remote_nextcloud {
  272. if grep -q "nextcloud domain" $COMPLETION_FILE; then
  273. echo $"Restoring nextcloud"
  274. NEXTCLOUD_DOMAIN_NAME=$(get_completion_param "nextcloud domain")
  275. function_check nextcloud_create_database
  276. nextcloud_create_database
  277. function_check restore_database_from_friend
  278. restore_database_from_friend nextcloud ${NEXTCLOUD_DOMAIN_NAME}
  279. if [ -d /root/tempnextcloud ]; then
  280. rm -rf /root/tempnextcloud
  281. fi
  282. temp_restore_dir=/root/tempnextcloudfiles
  283. restore_directory_from_friend $temp_restore_dir nextcloudfiles
  284. if [ -d $temp_restore_dir/var/www/${NEXTCLOUD_DOMAIN_NAME}/data ]; then
  285. cp -r $temp_restore_dir/var/www/${NEXTCLOUD_DOMAIN_NAME}/data /var/www/${NEXTCLOUD_DOMAIN_NAME}/
  286. else
  287. cp -r $temp_restore_dir/* /var/www/${NEXTCLOUD_DOMAIN_NAME}/
  288. fi
  289. if [ ! "$?" = "0" ]; then
  290. exit 768254
  291. fi
  292. rm -rf ${temp_restore_dir}
  293. temp_restore_dir=/root/tempnextcloudconfig
  294. restore_directory_from_friend $temp_restore_dir nextcloudconfig
  295. if [ -d $temp_restore_dir/var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config ]; then
  296. cp -r $temp_restore_dir/var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs
  297. else
  298. cp -r $temp_restore_dir/* /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config/
  299. fi
  300. if [ ! "$?" = "0" ]; then
  301. exit 573427
  302. fi
  303. rm -rf ${temp_restore_dir}
  304. chown -R www-data:www-data /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs
  305. chown -R www-data:www-data /var/www/${NEXTCLOUD_DOMAIN_NAME}/data
  306. cd /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs
  307. sudo -u www-data ./occ maintenance:repair
  308. sudo -u www-data ./occ files:cleanup
  309. sudo -u www-data ./occ files:scan --all
  310. fi
  311. }
  312. function remove_nextcloud {
  313. if [ ${#NEXTCLOUD_DOMAIN_NAME} -eq 0 ]; then
  314. return
  315. fi
  316. function_check remove_nodejs
  317. remove_nodejs pleroma-nextcloud
  318. sed -i 's|env[PATH]|;env[PATH]|g' /etc/php/7.0/fpm/pool.d/www.conf
  319. read_config_param "NEXTCLOUD_DOMAIN_NAME"
  320. read_config_param "MY_USERNAME"
  321. echo "Removing $NEXTCLOUD_DOMAIN_NAME"
  322. nginx_dissite $NEXTCLOUD_DOMAIN_NAME
  323. remove_certs $NEXTCLOUD_DOMAIN_NAME
  324. if [ -d /var/www/$NEXTCLOUD_DOMAIN_NAME ]; then
  325. rm -rf /var/www/$NEXTCLOUD_DOMAIN_NAME
  326. fi
  327. if [ -f /etc/nginx/sites-available/$NEXTCLOUD_DOMAIN_NAME ]; then
  328. rm /etc/nginx/sites-available/$NEXTCLOUD_DOMAIN_NAME
  329. fi
  330. function_check drop_database
  331. drop_database nextcloud
  332. function_check remove_onion_service
  333. remove_onion_service nextcloud ${NEXTCLOUD_ONION_PORT}
  334. remove_app nextcloud
  335. remove_completion_param install_nextcloud
  336. sed -i '/nextcloud/d' $COMPLETION_FILE
  337. remove_backup_database_local nextcloud
  338. function_check remove_ddns_domain
  339. remove_ddns_domain $NEXTCLOUD_DOMAIN_NAME
  340. systemctl restart nginx
  341. systemctl restart php7.0-fpm
  342. }
  343. function install_nextcloud_main {
  344. if [ ! $NEXTCLOUD_DOMAIN_NAME ]; then
  345. echo $'No domain name was given for nextcloud'
  346. exit 7359
  347. fi
  348. if [[ $(app_is_installed nextcloud_main) == "1" ]]; then
  349. return
  350. fi
  351. function_check install_mariadb
  352. install_mariadb
  353. function_check get_mariadb_password
  354. get_mariadb_password
  355. function_check repair_databases_script
  356. repair_databases_script
  357. apt-get -yq install php-gettext php-curl php-gd php-mysql git curl
  358. apt-get -yq install php-intl memcached php-memcached libfcgi0ldbl
  359. apt-get -yq install php-zip
  360. # Ensure PATH is available to php
  361. if [ ! -f /etc/php/7.0/fpm/pool.d/www.conf ]; then
  362. echo $'No php www configuration file found'
  363. exit 628757
  364. fi
  365. sed -i 's|;env[PATH]|env[PATH]|g' /etc/php/7.0/fpm/pool.d/www.conf
  366. if [ ! -d /var/www/$NEXTCLOUD_DOMAIN_NAME ]; then
  367. mkdir /var/www/$NEXTCLOUD_DOMAIN_NAME
  368. fi
  369. if [ ! -d /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs ]; then
  370. if [ -d /repos/nextcloud ]; then
  371. mkdir /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs
  372. cp -r -p /repos/nextcloud/. /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs
  373. cd /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs
  374. git pull
  375. else
  376. function_check git_clone
  377. git_clone $NEXTCLOUD_REPO /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs
  378. fi
  379. if [ ! -d /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs ]; then
  380. echo $'Unable to clone nextcloud repo'
  381. exit 87525
  382. fi
  383. fi
  384. cd /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs
  385. git submodule update --init
  386. git checkout $NEXTCLOUD_COMMIT -b $NEXTCLOUD_COMMIT
  387. set_completion_param "nextcloud commit" "$NEXTCLOUD_COMMIT"
  388. chmod g+w /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs
  389. chown -R www-data:www-data /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs
  390. function_check nextcloud_create_database
  391. nextcloud_create_database
  392. if [ ! -f "/etc/aliases" ]; then
  393. touch /etc/aliases
  394. fi
  395. if ! grep -q "www-data: root" /etc/aliases; then
  396. echo 'www-data: root' >> /etc/aliases
  397. fi
  398. function_check add_ddns_domain
  399. add_ddns_domain $NEXTCLOUD_DOMAIN_NAME
  400. nextcloud_nginx_site=/etc/nginx/sites-available/$NEXTCLOUD_DOMAIN_NAME
  401. if [[ $ONION_ONLY == "no" ]]; then
  402. function_check nginx_http_redirect
  403. nginx_http_redirect $NEXTCLOUD_DOMAIN_NAME
  404. echo 'server {' >> $nextcloud_nginx_site
  405. echo ' listen 443 ssl;' >> $nextcloud_nginx_site
  406. echo ' listen [::]:443 ssl;' >> $nextcloud_nginx_site
  407. echo " server_name $NEXTCLOUD_DOMAIN_NAME;" >> $nextcloud_nginx_site
  408. echo '' >> $nextcloud_nginx_site
  409. echo ' # Security' >> $nextcloud_nginx_site
  410. function_check nginx_ssl
  411. nginx_ssl $NEXTCLOUD_DOMAIN_NAME mobile
  412. function_check nginx_disable_sniffing
  413. nginx_disable_sniffing $NEXTCLOUD_DOMAIN_NAME
  414. echo ' add_header Strict-Transport-Security max-age=15768000;' >> $nextcloud_nginx_site
  415. echo '' >> $nextcloud_nginx_site
  416. echo ' # Logs' >> $nextcloud_nginx_site
  417. echo ' access_log /dev/null;' >> $nextcloud_nginx_site
  418. echo ' error_log /dev/null;' >> $nextcloud_nginx_site
  419. echo '' >> $nextcloud_nginx_site
  420. echo ' # Root' >> $nextcloud_nginx_site
  421. echo " root /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs;" >> $nextcloud_nginx_site
  422. echo '' >> $nextcloud_nginx_site
  423. echo ' # Index' >> $nextcloud_nginx_site
  424. echo ' index index.php;' >> $nextcloud_nginx_site
  425. echo '' >> $nextcloud_nginx_site
  426. # By default nextcloud advertises highly specific version information
  427. # on status.php, which can obviously be used by adversaries.
  428. # Blocking status.php prevents this information leak
  429. echo ' location = /status.php {' >> $nextcloud_nginx_site
  430. echo ' return 404;' >> $nextcloud_nginx_site
  431. echo ' }' >> $nextcloud_nginx_site
  432. echo '' >> $nextcloud_nginx_site
  433. echo ' # PHP' >> $nextcloud_nginx_site
  434. echo ' location ~ \.php {' >> $nextcloud_nginx_site
  435. echo ' include snippets/fastcgi-php.conf;' >> $nextcloud_nginx_site
  436. echo ' fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;' >> $nextcloud_nginx_site
  437. echo ' fastcgi_read_timeout 30;' >> $nextcloud_nginx_site
  438. echo ' }' >> $nextcloud_nginx_site
  439. echo '' >> $nextcloud_nginx_site
  440. echo ' # Location' >> $nextcloud_nginx_site
  441. echo ' location / {' >> $nextcloud_nginx_site
  442. function_check nginx_limits
  443. nginx_limits $NEXTCLOUD_DOMAIN_NAME '15m'
  444. echo ' try_files $uri $uri/ @nextcloud;' >> $nextcloud_nginx_site
  445. echo ' }' >> $nextcloud_nginx_site
  446. echo '' >> $nextcloud_nginx_site
  447. echo ' # Fancy URLs' >> $nextcloud_nginx_site
  448. echo ' location @nextcloud {' >> $nextcloud_nginx_site
  449. echo ' rewrite ^(.*)$ /index.php?p=$1 last;' >> $nextcloud_nginx_site
  450. echo ' }' >> $nextcloud_nginx_site
  451. echo '' >> $nextcloud_nginx_site
  452. echo ' # Restrict access that is unnecessary anyway' >> $nextcloud_nginx_site
  453. echo ' location ~ /\.(ht|git) {' >> $nextcloud_nginx_site
  454. echo ' deny all;' >> $nextcloud_nginx_site
  455. echo ' }' >> $nextcloud_nginx_site
  456. echo '' >> $nextcloud_nginx_site
  457. echo ' location = /.well-known/carddav {' >> $nextcloud_nginx_site
  458. echo ' return 301 $scheme://$host/remote.php/dav;' >> $nextcloud_nginx_site
  459. echo ' }' >> $nextcloud_nginx_site
  460. echo ' location = /.well-known/caldav {' >> $nextcloud_nginx_site
  461. echo ' return 301 $scheme://$host/remote.php/dav;' >> $nextcloud_nginx_site
  462. echo ' }' >> $nextcloud_nginx_site
  463. echo '' >> $nextcloud_nginx_site
  464. echo ' location /.well-known/acme-challenge { }' >> $nextcloud_nginx_site
  465. echo '' >> $nextcloud_nginx_site
  466. # DO NOT ENABLE KEYBASE. nextcloud really doesn't like having a .well-known directory
  467. echo '}' >> $nextcloud_nginx_site
  468. else
  469. echo -n '' > $nextcloud_nginx_site
  470. fi
  471. echo 'server {' >> $nextcloud_nginx_site
  472. echo " listen 127.0.0.1:$NEXTCLOUD_ONION_PORT default_server;" >> $nextcloud_nginx_site
  473. echo " server_name $NEXTCLOUD_DOMAIN_NAME;" >> $nextcloud_nginx_site
  474. echo '' >> $nextcloud_nginx_site
  475. function_check nginx_disable_sniffing
  476. nginx_disable_sniffing $NEXTCLOUD_DOMAIN_NAME
  477. echo '' >> $nextcloud_nginx_site
  478. echo ' # Logs' >> $nextcloud_nginx_site
  479. echo ' access_log /dev/null;' >> $nextcloud_nginx_site
  480. echo ' error_log /dev/null;' >> $nextcloud_nginx_site
  481. echo '' >> $nextcloud_nginx_site
  482. echo ' # Root' >> $nextcloud_nginx_site
  483. echo " root /var/www/$NEXTCLOUD_DOMAIN_NAME/htdocs;" >> $nextcloud_nginx_site
  484. echo '' >> $nextcloud_nginx_site
  485. echo ' # Index' >> $nextcloud_nginx_site
  486. echo ' index index.php;' >> $nextcloud_nginx_site
  487. echo '' >> $nextcloud_nginx_site
  488. # By default nextcloud advertises highly specific version information
  489. # on status.php, which can obviously be used by adversaries.
  490. # Blocking status.php prevents this information leak
  491. echo ' location = /status.php {' >> $nextcloud_nginx_site
  492. echo ' return 404;' >> $nextcloud_nginx_site
  493. echo ' }' >> $nextcloud_nginx_site
  494. echo '' >> $nextcloud_nginx_site
  495. echo ' # PHP' >> $nextcloud_nginx_site
  496. echo ' location ~ \.php {' >> $nextcloud_nginx_site
  497. echo ' include snippets/fastcgi-php.conf;' >> $nextcloud_nginx_site
  498. echo ' fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;' >> $nextcloud_nginx_site
  499. echo ' fastcgi_read_timeout 30;' >> $nextcloud_nginx_site
  500. echo ' }' >> $nextcloud_nginx_site
  501. echo '' >> $nextcloud_nginx_site
  502. echo ' # Location' >> $nextcloud_nginx_site
  503. echo ' location / {' >> $nextcloud_nginx_site
  504. function_check nginx_limits
  505. nginx_limits $NEXTCLOUD_DOMAIN_NAME '15m'
  506. echo ' try_files $uri $uri/ @nextcloud;' >> $nextcloud_nginx_site
  507. echo ' }' >> $nextcloud_nginx_site
  508. echo '' >> $nextcloud_nginx_site
  509. echo ' # Fancy URLs' >> $nextcloud_nginx_site
  510. echo ' location @nextcloud {' >> $nextcloud_nginx_site
  511. echo ' rewrite ^(.*)$ /index.php?p=$1 last;' >> $nextcloud_nginx_site
  512. echo ' }' >> $nextcloud_nginx_site
  513. echo '' >> $nextcloud_nginx_site
  514. echo ' # Restrict access that is unnecessary anyway' >> $nextcloud_nginx_site
  515. echo ' location ~ /\.(ht|git) {' >> $nextcloud_nginx_site
  516. echo ' deny all;' >> $nextcloud_nginx_site
  517. echo ' }' >> $nextcloud_nginx_site
  518. echo '' >> $nextcloud_nginx_site
  519. echo ' location = /.well-known/carddav {' >> $nextcloud_nginx_site
  520. echo ' return 301 $scheme://$host/remote.php/dav;' >> $nextcloud_nginx_site
  521. echo ' }' >> $nextcloud_nginx_site
  522. echo ' location = /.well-known/caldav {' >> $nextcloud_nginx_site
  523. echo ' return 301 $scheme://$host/remote.php/dav;' >> $nextcloud_nginx_site
  524. echo ' }' >> $nextcloud_nginx_site
  525. echo '' >> $nextcloud_nginx_site
  526. echo ' location /.well-known/acme-challenge { }' >> $nextcloud_nginx_site
  527. echo '}' >> $nextcloud_nginx_site
  528. sed -i 's| DENY;| SAMEORIGIN;|g' $nextcloud_nginx_site
  529. # NextCloud doesn't like content-security-policy at all
  530. sed -i '/Content-Security-Policy/d' $nextcloud_nginx_site
  531. function_check configure_php
  532. configure_php
  533. function_check create_site_certificate
  534. create_site_certificate $NEXTCLOUD_DOMAIN_NAME 'yes'
  535. if [[ $ONION_ONLY == "no" ]]; then
  536. if [ ! -f /etc/ssl/certs/${NEXTCLOUD_DOMAIN_NAME}.pem ]; then
  537. echo $'Certificate not generated for nextcloud'
  538. exit 725762
  539. fi
  540. fi
  541. # Ensure that the database gets backed up locally, if remote
  542. # backups are not being used
  543. function_check backup_databases_script_header
  544. backup_databases_script_header
  545. function_check backup_database_local
  546. backup_database_local nextcloud
  547. function_check nginx_ensite
  548. nginx_ensite $NEXTCLOUD_DOMAIN_NAME
  549. # NOTE: For the typical case always enable SSL and only
  550. # disable it if in onion only mode. This is due to complexities
  551. # with the way URLs are generated by nextcloud
  552. nextcloud_ssl='always'
  553. if [[ $ONION_ONLY != 'no' ]]; then
  554. nextcloud_ssl='never'
  555. fi
  556. NEXTCLOUD_ONION_HOSTNAME=$(add_onion_service nextcloud 80 ${NEXTCLOUD_ONION_PORT})
  557. NEXTCLOUD_SERVER=${NEXTCLOUD_DOMAIN_NAME}
  558. if [[ $ONION_ONLY != 'no' ]]; then
  559. NEXTCLOUD_SERVER=${NEXTCLOUD_ONION_HOSTNAME}
  560. fi
  561. systemctl restart php7.0-fpm
  562. systemctl restart nginx
  563. ${PROJECT_NAME}-addemail -u $MY_USERNAME -e "noreply@$NEXTCLOUD_DOMAIN_NAME" -g nextcloud --public no
  564. ${PROJECT_NAME}-pass -u $MY_USERNAME -a nextcloud -p "$NEXTCLOUD_ADMIN_PASSWORD"
  565. cd /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs
  566. if [ -d config ]; then
  567. chown -R www-data:www-data config
  568. fi
  569. if [ -d data ]; then
  570. chown -R www-data:www-data data
  571. fi
  572. chmod +x occ
  573. ./occ maintenance:install --database-name nextcloud --admin-user ${MY_USERNAME} --admin-pass "${NEXTCLOUD_ADMIN_PASSWORD}" --database mysql --database-user root --database-pass "${MARIADB_PASSWORD}"
  574. if [ ! -d data ]; then
  575. echo $'Nextcloud data directory was not found. This probably means that the installation failed.'
  576. echo ''
  577. echo $'Install command was:'
  578. echo "./occ maintenance:install --database-name nextcloud --admin-user ${MY_USERNAME} --admin-pass \"${NEXTCLOUD_ADMIN_PASSWORD}\" --database mysql --database-user root --database-pass \"${MARIADB_PASSWORD}\""
  579. exit 83522
  580. fi
  581. chown -R www-data:www-data config
  582. chown -R www-data:www-data data
  583. sudo -u www-data ./occ check
  584. sudo -u www-data ./occ status
  585. sudo -u www-data ./occ app:list
  586. sudo -u www-data ./occ app:enable encryption
  587. sudo -u www-data ./occ encryption:enable
  588. if [ ! "$?" = "0" ]; then
  589. echo $'Encryption not enabled'
  590. exit 73527
  591. fi
  592. sudo -u www-data ./occ encryption:status
  593. sudo -u www-data ./occ config:system:set appstoreenabled --value=false
  594. chmod g+w /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config/config.php
  595. chown -R www-data:www-data /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs
  596. chmod 0644 .htaccess
  597. chmod 0750 data
  598. chown -R www-data:www-data /var/www/${NEXTCLOUD_DOMAIN_NAME}/data
  599. sudo -u www-data ./occ config:system:set trusted_domains 1 --value=$NEXTCLOUD_DOMAIN_NAME
  600. sudo -u www-data ./occ config:system:set trusted_domains 2 --value=$NEXTCLOUD_ONION_HOSTNAME
  601. sudo -u www-data ./occ files:cleanup
  602. sudo -u www-data ./occ files:scan --all
  603. sudo -u www-data ./occ maintenance:repair
  604. sudo -u www-data ./occ maintenance:mode --off
  605. systemctl restart mariadb
  606. # move the data directory
  607. mv /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/data /var/www/${NEXTCLOUD_DOMAIN_NAME}/
  608. sed -i "s|'datadirectory'.*|'datadirectory' => '/var/www/$NEXTCLOUD_DOMAIN_NAME/data',|g" /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config/config.php
  609. set_completion_param "nextcloud domain" "$NEXTCLOUD_DOMAIN_NAME"
  610. install_completed nextcloud_main
  611. }
  612. function install_nextcloud {
  613. if [ ! $ONION_ONLY ]; then
  614. ONION_ONLY='no'
  615. fi
  616. install_nextcloud_main
  617. APP_INSTALLED=1
  618. }
  619. # NOTE: deliberately there is no "exit 0"