19 строки
457 B
ApacheConf
19 строки
457 B
ApacheConf
<VirtualHost *:80>
|
|
ServerAdmin webmaster@localhost
|
|
DocumentRoot /var/www/html
|
|
Alias /nextcloud /var/www/html
|
|
|
|
<Directory /var/www/html/>
|
|
Options +FollowSymlinks
|
|
AllowOverride All
|
|
|
|
SetEnv HOME /var/www/html
|
|
SetEnv HTTP_HOME /var/www/html
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|
|
|
|
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|