The Apache HTTP Server, commonly referred to as Apache, is an open-source HTTP server for modern operating systems including UNIX, its variants and Windows. Apache is a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards.
0
votes
0answers
15 views
php configuration 1&1 cloud server
Firstly, I would say that 1&1 support is very very bad. After few days to try upload file on my server, it says no space left on server. My server was new...
After more 5 calls a 1&1 a ...
0
votes
0answers
9 views
Java 1.6 and URIBuilder
There is a clean way to build this examples with Apache URIBuilder?
"http://host/path", passing "path2" -> "http://host/path/path2"
"http://host/path", passing "/path2" -> "http://host/path2"
...
0
votes
1answer
4 views
SSL installed on Apache2 but HTTPS not working
I recently installed an SSL certificate on my Amazon EC2 Ubuntu 12.04(32bit) server running Apache 2.
When I attempt to access my site via https, it does not load. When I perform an nmap scan, i see ...
0
votes
0answers
3 views
URIBuilder in HTTPClient 4.2.x setPath anomaly?
i've a little problem working with URIBuilder from Apache.
Now, let's take this snippet:
URIBuilder builder = new URIBuilder();
builder.setScheme("http");
builder.setHost("localhost");
...
0
votes
0answers
5 views
Apache 2.4 mod_status configuration with virtual hosts Getting Forbidden error
I am trying to get mod_status set up on my apache 2.4 server. I have trawled the net for hours but all the examples given just show the tags in the main httpd.conf file, not how to place the ...
0
votes
0answers
10 views
ServerAlias changes URL in browser address bar
I have this situation:
ServerName sitea.domain.org
ServerAlias siteb.domain.org
If I put siteb.domain.org on my browser I'm redirected to the sitea.domain.org (which is what I want) but the URL on ...
0
votes
0answers
5 views
Apache Multiple Django Sites Including Root
I would like to serve multiple django apps using mod_wsgi including one at root. Currently my apache config looks like this:
WSGIScriptAlias /app1 /path/to/app1/wsgi.py
<Directory ...
1
vote
1answer
8 views
Images on WordPress with Paramters Don't Work
Latest WP and latest TimThumb script. When I visit http://www.festivalconference.com/wp-content/uploads/2013/05/Eavis-1.jpg&w=520&h=280&zc=1 I get a 404 but when I visit ...
0
votes
0answers
10 views
.htaccess redirect loop on subdirectory
I have been trying to figure this one out for hours without success. The following redirects cause a redirect loop on certain links.
http://www.domain.com/category will work correctly
...
0
votes
0answers
6 views
trouble with Python's Shapely module in Apache under WSGI on Windows
I’d like to use Python's Shapely in this environment:
In a Python 2.6 script implementing a WSGI application
Deployed on Windows behind Apache httpd 2.x
Alas, I get this error logged by Apache:
...
0
votes
1answer
24 views
Public access on my own git server
I create my own git server following the official how-to. SSH access works perfectly while my computer SSH key is on the server. But I'd like to add a public access (to be able to do git clone ...
0
votes
2answers
12 views
No SCRIPT_URI or SCRIPT_URL in my phpinfo
I am running WAMP 2.2 with Apache 2.0.50 and PHP 5.2.11 and I looked in my phpinfo and I cant find SCRIPT_URI or SCRIPT_URL I tried adding this script to my httpd.conf file for apache and it didn't ...
0
votes
0answers
9 views
Getting authenticated user in mercurial hook
I have an Apache httpd+mod_wsgi+Mercurial setup and I would like to get authenticated user in a hook, specifically pretxnchangegroup hook. I have read (most likely incorrectly) that ...
0
votes
1answer
7 views
Using SSL on two VirtualHosts
So I got an SSL from GoDaddy.
It works for my public site mysite.com.
I would like now to have an SSL connection for my administrator.mysite.com
So I created a self signed certificate using openssl ...
0
votes
0answers
10 views
running Apache + Bottle + Python
Ok so i'm trying to run Python with Bottle.py, thru Apache and mod_wsgi, and it doesn't work so far...
I'm running it on windows, using a xampp. python v2.7
the code i added to httpd(Apache config):
...