blob: a6a232968815ae0c31a9ebc47acf250a4047a127 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
***********************************************************************
* POST INSTALL CONFIGURATION *
***********************************************************************
Please note that everything has been installed in %%WWWDIR%%.
You will probably want to add an alias to your httpd.conf file, something
like this:
Alias /nextcloud %%WWWDIR%%
AcceptPathInfo On
<Directory %%WWWDIR%%>
AllowOverride All
Require all granted
</Directory>
And restart Apache.
***********************************************************************
* NEXTCLOUD VERSION UPGRADE *
***********************************************************************
After a version migration you should upgrade your nextcloud instance
using command line:
cd %%WWWDIR%%
su -m www -c "php ./occ upgrade"
|