apache

Virtual Host points to another Virtual Host

Hello all, HELP! I just setup a virtual host for two sites that have a lot of traffic and I think I just messed something up! Here is the end of my httpd.conf: NameVirtualHost * <VirtualHost *> ServerName www.mydomain.com DocumentRoot /var/www/html </VirtualHost> <VirtualHost *> ServerName www.mydomain2.com DocumentRoot /var/www/downl...

How to drop WIMP for LAMP

Does anyone have an example of something that can not be done on a Windows2000 server using PHP5? UPDATE: Just to clarify, my problem isn't with IIS, or that I'm an "only open source" kinda guy. It's that the hosting is a terrible package across the board. The storage and bandwidth are ridiculous, there's no control panel so in order t...

.HTACCESS File causing Internal Server Error

I have copied the files and database from BradPPresents.com to BradP.com. The .htaccess file is required to get pages to display properly since "Pretty URLs" are enabled by joomla!. You can see that the database and all connections are working at http://bradp.com/index.php, however http://bradp.com/home.html does not work as it relies...

Firefox "ssl_error_no_cypher_overlap" error

My co-workers and I are having a problem using Firefox 3.0.6 to access a Java 1.6.0___11 web application we're developing. Everything works fine anywhere from 1-30 minutes into the session...but eventually, the connection fails and the following error appears: Secure Connection Failed An error occurred during a connection to 10.x.x.x...

Why Won't Server Side Includes Work?

I have been trying to use Server Side Includes on my website to save time writing code and be able to change site wide elements quickly and easily. However i cannot seem to get them to work, either locally or on the Server. I have set them up as .html files (with only the code needed and no html or body tags) in a "ssi" folder and am c...

mod_rewrite question

I would like to serve /foo and /foo/ locally, but proxy requests for /foo/* to a remote server. However, the following rule matches all of the above. What am I doing wrong? RewriteRule ^/foo/(.+)$ http://remote.host/$1 [P,L] ...

Apache Reverse Proxy With SSL

Is it possbile to reverse proxy to internal server via HTTPS and serve the certificate from the backend server instead of the certificate on the proxy? ...

Problem redirecting 403 Forbidden to 404 Not Found.

The pertinent part of my .htaccess looks like this: Options -Indexes <FilesMatch include> Order allow,deny Deny from all </FilesMatch> RedirectMatch 404 ^/include(/.*)$ And it's generating the following responses: /include 403 /include/ 404 /include/config.inc 403 I can tell by looking at my pattern that problem is l...

jcc.initVM() doesn't return when mod_wsgi is configured as daemon mode

I am using mod-wsgi with django, and in django I use pylucene to do full text search. While mod-wsgi is configured to be embedded mode, there is no problem at all. But when mod-wsgi is configured to be daemon mode, the apache just gets stuck, and the browser just keep loading but nothing appears. Then I identity the problem to be the ...

Apache error log - file does not exist

I am receiving some mysterious errors in my apache error log. For example: File does not exist: /home/httpd/vhosts/studentlife.co.il/httpdocs/help_center/div.hot-jobs File does not exist: /home/httpd/vhosts/studentlife.co.il/httpdocs/solutions/function.filesize File does not exist: /home/httpd/vhosts/studentlife.co.il/httpdocs/work...

Combining servlets and a "normal" webserver

I am about to migrate a web application from PHP to JAVA (GWT) but I would like to do it iteratively, chunk by chunk. Currently I use apache to serve the HTML and PHP files, but in the conversion period I also need Jetty or Tomcat to handle the servlets. And also from port 80 I guess? How can I do such a mix? ...

Apache Multiple VirtualDocumentRoot

Using Apache2 on a Linux system is there a way to have multiple VirtualDocumentRoot using mod_vhost_alias? This is naming convention I am currently using and would like to continue to use: host directory 127.0.0.1 domain domain.com 127.0.0.1 sub.domain domain.com_sub Then in my vhosts section of the httpd...

Another mod_rewrite trailing slash question

I have the following rewrite rules in my .htaccess file: RewriteEngine on RewriteRule ^news/([0-9]+)/?$ /?action=news&start=$1 [L] RewriteRule ^man/([a-zA-Z0-9_]+)/?$ /?action=man&page=$1 [L] RewriteRule ^([a-zA-Z0-9_]+)/?$ /?action=$1 [L] All of then end with a /? to check for an optional trailing slash. This works - it means I can u...

character encoding seems to work on a MAMP server but not on a WAMP server?

Hi, I've working on a web application, that should be able to accept tags and search queries in multiple languages. That's not asking too much, is it? Now, on my development MAMP server everything is great. I add multilingual tags, search in any language I want etc. On the other hand, on the production WAMP server, multilingual characte...

Redirect all IPs except those whitelisted

I want to protect some subdomains from the public. Restriction should be done against a whitelist of IPs. Infinite loop due to the redirect is not a problem as its not the www-domain. I tried this http://discussions.apple.com/message.jspa?messageID=2411725, but couldnt get it to work. However I did try this first RewriteEngine on Rewr...

serve with apache all paths under a domain through one script.

i'm hosting a website through a hosting company [1] on a linux/apache server. until now i serve the different content through one script with parameters. an example url is www.mydomain.com/pages.php?date=1-10-2008 now i want to change the scheme the url is composed of to something which looks completely like a path url. eg.: www.mydo...

Detecting HTTPS vs HTTP on server sending back nothing useful

So kind of very similar to "Detecting https requests in php": Want to have https://example.com/pog.php go to http://example.com/pog.php or even vice versa. Problems: Can't read anything from $_SERVER["HTTPS"] since it's not there Server is sending both requests over port 80, so can't check for 443 on the HTTPS version apache_request_...

Apache mod_rewrite and PHP ?argument=something

I'm trying to get all HTML and PHP files on my site to redirect through the index.php, so that they can have common frames applied to them, a templating solution I coded that I found to be quite elegant. Anywho, I'm having issues with my PHP files, specifically those that have arguments after them. My regular rule for PHP files is the f...

Is it possible, to work with ASP.NET 2.0 or ASP.NET 3.5 under Apache 2.x?

I know, that there is a solution in the following blog: http://weblogs.asp.net/israelio/archive/2005/09/11/424852.aspx Has anybody tried to get it work under production circumstances? Greetings, Andre ...

Apache name based virtual hosting

Last time I tried setting up name based virtual hosting on my development machine I just gave up and mapped websites to different ports. This time, I'm trying to do it right :)! I've properly registered DNS entries and sending two different headers to the server: Host: dev.site1.com Host: dev.site2.com However, Apache is giving me a ...