Pagal numatytuosius Ubuntu nustatymus Apache2 web serverio failai saugomi "/var/www/html" kataloge. Kartais šį katalogą naudinga perkelti į kitą vietą, pavyzdžiui, į atskirai prijungtą failų sistemą.
Pavyzdyje naudojama Ubuntu 22.04, tačiau šie veiksmai taip pat tinka kitoms Ubuntu ir Debian distribucijoms.
Failų kopijavimas
Failams į naują vietą kopijuoti naudosime "rsync":
rsync -av /var/www/html /new/location
Parametras "-a" išsaugo failų teises ir kitas katalogo savybes, o "-v" terminale pateikia išsamesnę informaciją apie vykdomą kopijavimą.
Pastaba: jei katalogo keliui užbaigti naudojate "Tab" klavišą, pašalinkite kelio pabaigoje automatiškai pridėtą pasvirąjį brūkšnį "/".
Konfigūracijos failo atnaujinimas
Dabar reikia atnaujinti "000-default.conf" failą.
Jame raskite eilutę, prasidedančią "DocumentRoot", ir nurodykite naują katalogo vietą. Konfigūracija turėtų atrodyti panašiai:
# The ServerName directive sets the request scheme, hostname, and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /new/directory
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example, the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
# vim: syntax=apache ts=4 sw=4 sts=4 sr note
Svarbiausias pakeitimas yra ši eilutė:
DocumentRoot /new/directory
Vietoje /new/directory nurodykite katalogą, į kurį nukopijavote svetainės failus.
Apache perkrovimas
Baigę keisti konfigūraciją, pirmiausia patikrinkite, ar joje nėra sintaksės klaidų:
sudo apachectl configtest
Jei konfigūracija teisinga, turėtumėte gauti tokį rezultatą:
Jei sintaksės klaidų nėra, perkraukite Apache web serverio konfigūraciją. Jei klaidų aptikta, pirmiausia jas ištaisykite.
Naudokite šią komandą:
sudo systemctl reload apache2


