Fixing paths for apache error and access logs (#28580)
Paths were saved to: /var/log/apache2helloapp-error.log /var/log/apache2helloapp-access.log Instead, it should be: /var/log/apache2/helloapp-error.log /var/log/apache2/helloapp-access.logpull/28588/head
parent
9e938bdb12
commit
20651ef8e5
|
@ -156,8 +156,8 @@ Create a configuration file, named *helloapp.conf*, for the app:
|
|||
ProxyPassReverse / http://127.0.0.1:5000/
|
||||
ServerName www.example.com
|
||||
ServerAlias *.example.com
|
||||
ErrorLog ${APACHE_LOG_DIR}helloapp-error.log
|
||||
CustomLog ${APACHE_LOG_DIR}helloapp-access.log common
|
||||
ErrorLog ${APACHE_LOG_DIR}/helloapp-error.log
|
||||
CustomLog ${APACHE_LOG_DIR}/helloapp-access.log common
|
||||
</VirtualHost>
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue