Tagged Questions
3
votes
0answers
901 views
Mono 2.10.1 apache errors: Command stream corrupted, last command was -1
When starting a test mono server, Immediately the site is giving quite a few errors. The error I'm particularly concerned about is
[error] (70014)End of file found: read_data failed
[error] Command ...
2
votes
0answers
41 views
Force redirection to HTTPS with query params by HAProxy
I am using HaProxy to load balance incoming requests and do sub-domain based redirection. Now I want to make all incoming request forcefully HTTPS, with query params.
For ex:-
...
2
votes
0answers
32 views
Move top level domain to sub-directory to host multiple sites on same domain using Apache
I have a multiple sites on different domains using a SaaS LAMP application. I'm attempting to move all of the sites under a single domain, and allow for additional sites to be added without monkeying ...
2
votes
0answers
197 views
How can I run ASP.NET MVC3 in Apache?
I have an Ubuntu 12.10 server installed running Mono 2.10.8. I also have Apache2 running and was able to run ASP.NET with mod_mono version 4. I am now trying to run an ASP.NET MVC3 web app, but I get ...
2
votes
0answers
120 views
Apache refresh after anything but 200 Ok
I have an Apache (2.2.20) and for a specific VirtualHost, I would like to make the Browser refresh the page when an error occurred.
the use-case is that I have many computers that just start a ...
2
votes
0answers
371 views
Proxied ajax request fails with status code 200
I'm building a js-only webapp consuming an external API through a Reverse Proxy.
To do this I set up my Apache adding the following rules:
ProxyRequests off
ProxyPassReverseCookiePath /starmobile /
...
2
votes
0answers
829 views
Selectively configuring Apache 2 mod_headers for Google Chrome Frame
I am currently evaluating Google Chrome Frame and so far i'm happy with it, but what i'd like to do is selectively use it for certain sections of my website.
Some sections require ActiveX so need to ...
1
vote
0answers
9 views
How redirect pages with apache2 when site is under maintenance
i can't understand how redirect pages when the site is under construction, i search a lot on the the web, and i found that some people use the .htaccess but this is what apache2 configuration said:
...
1
vote
0answers
54 views
Apache mod_rewrite never rewrite for existing directory except directory is certain directory?
A website http://www.example.com/ runs on a CMS and everything goes through it by rules set in .htaccess. When visiting http://www.example.com/ the user is redirected to one of the following paths ...
1
vote
0answers
178 views
.htaccess changes from 2.2 to 2.4, protect directory
I have a web server running Apache 2.2 and am starting a new one with Apache 2.4.
The following is my vhost on the new 2.4 machine:
<VirtualHost *:80>
DocumentRoot /var/www/
...
1
vote
0answers
114 views
Apache and PHP causing timeout in server
If i use the code in one script, like:
ignore_user_abort(1);
sleep(30);
And i close the page, the client stay in a timeout for 30 seconds to any page of server. I try put "Timeout 5" in the ...
1
vote
0answers
135 views
how to configure mod_proxy_ftp
Im struggling to find any example of how i can configure the module mod_proxy_ftp
# Reverse Proxy
#
ProxyRequests On
#ProxyPreserveHost On
<Proxy *>
Order deny,allow
Allow from ...
1
vote
0answers
238 views
MaxClient (httpd), maxThreads (tomcat) and acceptCount (tomcat)
In my project, I do have 2 web servers (httpd) and two application servers (tomcat).
Each httpd and tomcat is on separate machine.
The DNS (hardware) EQUALLY loadbalance the request to two web servers ...
1
vote
0answers
117 views
apache basic_authentication exception
I want to put the a server under apache_basic authentication,
I added HTTP auth to the root of the server using this
<Location />
AuthType Basic
AuthName "Authentication"
...
1
vote
0answers
191 views
How to resume an HTTP download served by Apache and svn module?
I 'm using Collabnet Subversion server 1.7.6(on Windows); I store large files(30M+) in SVN repository and serve them via the bundled Apache HTTP server(2.2.22).
I find that download of SVN-served ...