diff options
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | plugins/fcgi/fcgi.cpp | 2 | ||||
-rw-r--r-- | webserver.conf | 1 |
3 files changed, 2 insertions, 2 deletions
@@ -1,3 +1,4 @@ +Fix auth on Chrome and Android/Samsung browser git via smart http / cgi git via web interface php diff --git a/plugins/fcgi/fcgi.cpp b/plugins/fcgi/fcgi.cpp index a97f1c0..a1529bc 100644 --- a/plugins/fcgi/fcgi.cpp +++ b/plugins/fcgi/fcgi.cpp @@ -356,7 +356,7 @@ std::string fcgi_plugin::fcgiQuery(FCGIContext& context) std::lock_guard<std::mutex> socket_lock{socket->getMutex()}; - socket->close(); // TODO: Bug workaround: Keeping socket open doesn't work for now + socket->close(); // TODO: Bug workaround: Keeping socket open doesn't work for now. Subsequent requests are cancelled because connection is already closed by server. if (!socket->is_open()) { //std::cout << "FCGI: Opening new socket" << std::endl; diff --git a/webserver.conf b/webserver.conf index 7aba1a7..3659e59 100644 --- a/webserver.conf +++ b/webserver.conf @@ -78,7 +78,6 @@ <target>/home/ernie/code/webshop/html</target> </path> - <path requested="/redirect1"> <plugin>redirect</plugin> <target>https://www.antcom.de/</target> |