Skip to content

Instantly share code, notes, and snippets.

@yaleksandr89
Created June 21, 2019 19:42
Show Gist options
  • Save yaleksandr89/90f48dbe5877d9950a7a0e5af9a4459c to your computer and use it in GitHub Desktop.
Save yaleksandr89/90f48dbe5877d9950a7a0e5af9a4459c to your computer and use it in GitHub Desktop.
Если при проверки статуса Apache
```
systemctl status apache2
```
Появляется нотис:
***
apachectl[27141]: AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally
***
Необходимо добавить строчку:
```
ServerName localhost
```
В конец файла:
```
sudo gedit /etc/apache2/apache2.conf
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment