Apache FAQ
redirect port
proxy
apache
ServerName
domain name
Не найден ServerName
При просмотре статуса сервиса apache выдается сообщение, что не обнаружено имя FQDN сервера:
* Starting web server apache2
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
Решение:
Добавить директиву ServerName:
sudo sh -c 'echo "ServerName "$(uname -n) >> /etc/apache2/conf.d/name' && sudo service apache2 restart
Не работает редирект
Не работает apache2 редирект с хост машины на определенный порт гостевой машины.
|Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.More information about this error may be available in the server error log.Apache/2.2.22 (Ubuntu) Server at .... Port 80
[warn] proxy: No protocol handler was valid for the URL /. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
Решение:
Редирект при ошибках в URL
Как сделать редирект на главную страницу сайта с случае возникновения ошибок 403?
Решение:
Включить mod_rewrite:
Включить поддержку .htaccess в каталоге сайта - директива Directory - AllowOverride ALL
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName bibel.ru
DocumentRoot /home/ubuntu/react/react-project/build
ErrorLog ${APACHE_LOG_DIR}/bibel_err.log
CustomLog ${APACHE_LOG_DIR}/bibel_acc.log combined
<Directory /home/ubuntu/react/react-project/build>
AllowOverride ALL
</Directory>
</VirtualHost>
Прописать редирект 403, 404 ошибок на index.html
Как добавить стороннее приложение на сайт по роуту?
Необходимо разместить дополнительное приложение на основном домене, которое должно открывваться по ссылке типа http://yourdomain.ru/extra-app
Решение:
Для этого необходимо в файле описания сервера добавить директиву <Location>
и сделать Alias
на папку с приложением.
Например:
<Location /extra-app>
AllowOverride All
Order Allow,Deny
Allow from all
</Location>
Alias /extra-app /var/www/extra-app/
last update: 16.01.2024