Apache (HTTP Server) /əˈpætʃiː/ is a modular cross-platform web server software with a large variety of features(called modules) including SSL, compression, log, proxy and server-side programming language interfaces like Perl, Python, Tcl, and PHP.
4
votes
0answers
286 views
FallbackResource on Apache2 (2.2.22 (Ubuntu))
I'm trying to clean up my apache vhosts, since I've got a number of 'Alias's in place, and putting them all into a mod_rewrite can be annoying. However, while I can get to specific URLs (such as ...
4
votes
0answers
1k views
IE6 and IE7 send HTTP/1.1 without hostname on redirect
we use Redirect-after-Post Pattern in our webapp.
Sometimes very few error logs are shown in our apache log like this:
[error] [...] client sent HTTP/1.1 request without hostname (see RFC2616 ...
3
votes
0answers
918 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 ...
3
votes
0answers
652 views
Why will mp4 video not work when http basic authentication enabled?
I am trying to get video to play in an HTML5 video tag using the following code:
<video id="video" width="768" height="432" controls>
<source src="http://example.com/videos/example.mp4" ...
3
votes
0answers
2k views
Cannot remove Cache-Control: no-cache=“set-cookie” in Apache2
I am a mediocre apache2 configuration specialist so I am looking to the apache GODS to school me on a specific header that is causing some browsers to not cache cookies, which I need for an OAuth ...
3
votes
0answers
803 views
Apache LoadBalancing, sticky session, and Spring security framework
I have a public facing Apache 2.2 webserver that I've configured to proxy and balance requests to back-end web applications deployed on Tomcat 6.0. I am using Spring FW + Spring security framework as ...
2
votes
0answers
56 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
75 views
Zend Server resets to defaults on Zend Studio 10 startup
I' m running Zend Server 6.0.1 and Zend Studio 10 on Mac OS X Mountain Lion. Because Zend Servers Apache listens to port 10088 by default on Mac OS, I changed that in Apache configuration file to port ...
2
votes
0answers
35 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
205 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
116 views
Will Apache 2's mod_proxy wait and occupy a worker when long polling?
Or: How to get a good cgi + long polling setup?
We have a (mod_perl) web application running under Apache 2. Keeping existing code as-is, we now also want to do some long-polling, but then we'll ...
2
votes
0answers
153 views
mod_vhost_alias + wildcard + custom php.ini
Here's my httpd.conf thats using mod_vhost_alias.
The docroot is always in /home/username/domains/domainname/public_html.
<VirtualHost *:80>
ServerName *.abc.com
ServerAlias ...
2
votes
0answers
222 views
Apache2 mpm-itk Issues with PHP & vBulletin
I've spent a long time on this without much luck, so here I am.
SERVER DETAILS OF NOTE:
Linode 1024 (1GB RAM)
Apache2
Ubuntu 10.04
MySQL 5.1
PHP 5.3
vBulletin 4.2.0
mpm-itk
mod_php
mod_pagespeed
...
2
votes
0answers
80 views
google openid error:The server could not process your request
I am interest to create openid application in django for that ,i had using django-auth-openid it is working fine in django development server but after i want deploy on production server using ...
2
votes
0answers
121 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
63 views
django label tag on apache
I've a problem with form rendering on a form which inherits from my own User model.
When the rendering is made in dev, everything is OK.
But in prod, with apache and mod_python, the form is not ...
2
votes
0answers
374 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
77 views
how to remove part of string from url for webalizer
On my site, I use version-strings in the URL, for example:
www.mydomain.com/images/image.v723484872.jpg
In the HTTP config, I rewrite the URL so that the version string is cut of.
How can I ...
2
votes
0answers
83 views
MIT Licensed code into Apache 2.0 code
I am developing an open source Java library which will be licensed under the Apache License 2.0. Can I copy code (one method with minor modifications ) from another MIT licensed library. If I can, how ...
2
votes
0answers
833 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 ...
2
votes
0answers
328 views
IE closes connection on file download before end of download
IE randomly closes the connection whenever we try to download a file from our server (mp3 file).
It sometimes downloads the whole file, but it sometimes just doesn't download at all.
I've added %X ...
1
vote
0answers
20 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
8 views
trying to change cache headers on reverse_proxy
I'm trying to change the cache-control & Expires headers coming through an apache reverse_proxy. I can't change the origin server configs or code ATM.
ExpiresActive On
Header unset Etag
...
1
vote
0answers
18 views
Global download limit within Apache2
is it possible to limit the download rate globally for apache2 and not per user via eg. mod_bw or mod_cband?
And to allow only one download per user?
Thanks!
1
vote
0answers
74 views
How does Apache handle keep-alive connections for multiple clients on the same proxy?
I am dealing with performance issues and having trouble wrapping my head around Apache keep-alive connections. I understand that Apache is able to maintain a TCP connection for multiple requests, but ...
1
vote
0answers
37 views
mod_mono reboots server process every minute, on the minute, citing file changes as reason
Running mod_mono server 4.0 on Fedora 17, every minute, on the minute, mono reboots itself, citing file changes as the reason for rebooting, despite the fact no files have been made.
On occasion but ...
1
vote
0answers
66 views
Apache: help understand Action and AddHandler directives
I'm trying to puzzle out Apache handlers. The official documentation has the following example:
The following directives will cause requests for files with the html extension to trigger the launch ...
1
vote
0answers
128 views
Django Response always Chunked with text/html cannot set Content-Length
In my Django Application's views.py , I return an HttpResponse object after attempting to set the following HTTP Header fields:
# Create a Response Object with the content to return
response = ...
1
vote
0answers
123 views
PHP(AJAX) Files upload trouble w/$_FILES
Good day!
I've a trouble with my ajax file uploading algorithm. it is working fin on my local server( (Apache2/PHP), but when i use it in the remote server (Remote server:Nginx/PHP-FPM) it is ...
1
vote
0answers
355 views
Apache2 Ubuntu 12.10 Only Default Virtual Host is recognized
I've ran into this problem before with other flavors of Linux and typically it's something dumb but I think I've ruled out all those possibilities. I an using multiple virtual hosts on apache2 Ubuntu ...
1
vote
0answers
92 views
mod_rewrite directives work in .htaccess but ignored in httpd.conf
struggling with mod_rewrite in apache2. Problem is that the directives are ignored when put into the httpd.conf.
If I set AllowOverride All in the sites-available/default and add the directive to ...
1
vote
0answers
168 views
Apache 2.2 HTTP_HOST not resolving to localhost correctly
Apparently the whole issue is a newly introduced bug in chrome v.24 and host resolving, the htaccess works fine in any other browser.
No idea how to "close" this issue, if someone could point me to it ...
1
vote
0answers
59 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
206 views
Web Service calls fail with Invalid chunk header on Glassfish 3.1.2.2 + Apache2 + proxy_ajp
I have set up Apache 2.2.16 in front of Glassfish 3.1.2.2 server to provide HTTPS on TCP 443. I am using Apache proxy_http and proxy_ajp modules to relay the requests to Glassfish which is listening ...
1
vote
0answers
90 views
Apache Long Running Process Internal Timeout
I am developing a web application that allows users to run AI algorithms on a server remotely to decrease wait time for solutions. Here is an outline.
Browser -> jQuery AJAX -> Apache2 proxy ...
1
vote
0answers
182 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
122 views
Simple sinatra app with sqlite3 works when using WEBrick but not when using apache and passenger
I'm getting a "500 Internal Server Error" message when my app tries to write to my sqlite3 database.
Everything works fine when I'm using WEBbrick, but I get the above error when I'm using Apache and ...
1
vote
0answers
48 views
Distributed computing using Apache with mod_pywebsocket
I'm quite new in Apache so please be patient.
I'm trying to write distributed application which uses WebSocket protocol to communicate with each node.
What is important it must work in client - ...
1
vote
0answers
145 views
htaccess redirect loop with “Options +FollowSymLinks +SymLinksIfOwnerMatch” is not allowed
i have htaccess for phprssreader, but it's make me can't login into admin area..
the hosting is in ipage, seems because Options +FollowSymLinks +SymLinksIfOwnerMatch is not allowed.
in another host ...
1
vote
0answers
64 views
DAV SVN config for server hosting multiple domains
I have an apache2 webserver configured to serve multiple domains (I did it with virtual hosts).
After installing Subversion and enabling DAV SVN, the repository can be accessed through all the ...
1
vote
0answers
118 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
141 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
144 views
why eight httpd processes?
I am using linux EC2, I see 8 httpd processes immediately after I start apache, 2 of which are owned by root and the rest are owned by 'apache':
root 22966 1 0 08:03 ? 00:00:00 ...
1
vote
0answers
40 views
How to get Subversion working in Solaris10 CSW Apache2
Help I am pulling out my hair trying to get this combination to work. I have apache2 installed via CSW packages with subversion and the required CSWap2svn package. I have confirmed with ...
1
vote
0answers
152 views
mod_rewrite 301 redirect hundreds of old unstructured url
I need to redirect (301) hundreds of old unstructured urls to new ones. Old urls have querystring domain/directories/randomtext?args=1
I have a file with oldurl newurl lines.
I am trying with ...
1
vote
0answers
55 views
Opencpu App-Development process and deployment
I found an R package opencpu-demo which gets installed as an App on the server. However it isn't clear which files the user needs to explicitly create in the /install directory and how to tie it with ...
1
vote
0answers
112 views
Strange percent-encoded urls
I'm putting a rails application on a server that already had Apache2 HTTP server running on it. I installed ruby, rails, passenger, and other stuff for my RoR application, and set up the vHost for ...
1
vote
0answers
132 views
Install Web2py in virtual hosting
Install Web2py by a script setup-web2py-ubuntu.sh, previously adjusted the way for their virtual hosting.
But it works only on port 443, and the 80 th issue
It works!
How to fix?
...
1
vote
0answers
248 views
$_POST is empty or truncated intermittently
We're seeing an issue that sounds identical to the one reported here:
Intermittent empty $_POST issue
I'm not sure if that question was ever resolved (but I don't have the ability to comment on that ...
1
vote
0answers
35 views
Rewrite Query String with Apache
I'm trying to rewrite a query string:
from: domain.com/new-arrival.htm?webcat=1
to: domain.com/men-new-arrivals
This is what I have so far which doesn't seem to work:
RewriteEngine on
RewriteCond ...
