Question to QS_ErrorPage
Parameter for QS_ErrorPage is a Url relative to current host. Is it possible to set a real url to send errorpage from other host/server and not the one which is already overloaded?
The current solution requires a document within each VHost.
Thanks,
Hans
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
mod_qos 9.28 allows you to specify an absolute URI like http://server.mydomain.org/error.html. This causes mod_qos to send a HTTP redirect (302) to the client which then loads the error page form the specified URI.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
hmm,i tried 9.28 but is not working for me.
apache is not restarting and checkconf tells:
QS_ErrorPage: requires absolute path (http://www.example.com/index.php)
Hans
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Correct. I haven't changed the syntax check yet (I catch up this with the next release). But you may set an absolute path using the SetEnvIf directive of mod_setenvif, e.g.
Hello,
its me again ;)
Question to QS_ErrorPage
Parameter for QS_ErrorPage is a Url relative to current host. Is it possible to set a real url to send errorpage from other host/server and not the one which is already overloaded?
The current solution requires a document within each VHost.
Thanks,
Hans
mod_qos 9.28 allows you to specify an absolute URI like http://server.mydomain.org/error.html. This causes mod_qos to send a HTTP redirect (302) to the client which then loads the error page form the specified URI.
hmm,i tried 9.28 but is not working for me.
apache is not restarting and checkconf tells:
QS_ErrorPage: requires absolute path (http://www.example.com/index.php)
Hans
Correct. I haven't changed the syntax check yet (I catch up this with the next release). But you may set an absolute path using the SetEnvIf directive of mod_setenvif, e.g.
ok, this is working. but i prefer to wait for next release…
Thanks,
Hans