All Questions
23 questions
1
vote
1
answer
1k
views
apache mod_rewrite change base-url in deeplinks
The whole URL of my system is changing, as it is moved to a different location. I'd like to use my old Apache to forward 301 all calls to the new system for some time.
I have deeplinks like this:
...
0
votes
0
answers
110
views
How can i forward http request to https?
I have an application that work on :
http://XXXXX.it:8080/calendar
But i need to redirect it to
https_//XXXX.it/calendar
I install apache2 and add the certificate on it.
here the info:
etc/apache2/...
0
votes
1
answer
2k
views
apache httpd 2.4.37 forward proxy not working
I have build apache httpd 2.4.37 from source in redhat and installed in home directory [/home/test/httpd-2.4.37]. as I don't have root access to install from yum. The server is running, I want to use ...
-1
votes
1
answer
333
views
Redirect traffic from folder or its subfolders to another folder
I've got an Apache Webserver running on the default var/www/html path.
This looks like the following:
var (Folder)
| www (Folder)
| | html (Folder)
| | | index.php (File)
| | | ...
0
votes
1
answer
56
views
Redirect specific sites to tomcat7 from apache
Before going on, let me say that I'm rather new to application protocols and do not fully understand how this world works ... :-)
This is the situation:
I have several sites being served by apache2....
0
votes
1
answer
688
views
PHP: Listen to Syslog Messages
I am using Windows.
I want an application to listen to UDP Port 514 (Syslog) and pass (forward) messages to a PHP file, so I can parse and save them to my database.
Is there any application, server ...
0
votes
1
answer
23
views
.htaccess forward domain except some directories
I want to forward almost all content of mydomain.com to mydomain.somewhereelse.com But I want that www.mydomain.com/mail and www.mydomain.com/stats are not forwarded to the new address.
How should I ...
0
votes
0
answers
634
views
Can we convert/rewrite sslprotocol TLSv1.0 coming from client to TLSv1.1 or TLSv1.2 and forward with sslprotocol as TLSv1.1 or TLSv1.2 using Apache
I want to convert TLSv1.0 to TLSv1.1 or TLSv1.2, So that my outgoing request from my Proxy server is TLSv1.1/TLSv1.2. I can use Apache server.
Can someone Please Help !!
Any kind of Help is highly ...
1
vote
1
answer
724
views
mod_jk and mod_rewrite with prefix
We are trying to configure apache to forward requests to different servers hosting different Application servers.
We want to achieve the following.
www.mydomain.com/server1 --->forward to ---> ...
1
vote
1
answer
4k
views
How to forward requests to another URL?
Currently, I have the following rule in my httpd.conf file to forward all requests from port 80 to port 8080 to be served by GlassFish app server:
<VirtualHost *:80>
ServerAdmin admin@...
2
votes
1
answer
2k
views
Apache forward all requests to a specific static file
I am trying to forward (not redirect !) all http requests on my virtual host to a static file.
I would like to fake request by responding same data.
All example that I found redirect me to the ...
3
votes
1
answer
6k
views
port forwarding from Apache httpd 443 to JBoss 8443
I have a need to run Apache httpd in front of my JBoss so I can leave the JBoss ports in place (8080/8443) but have Apache/80 forward to Jboss/8080 and Apache/443 forward to Jboss/8443.
I have the ...
17
votes
1
answer
18k
views
Apache forwarding request to another server
I want apache to forward request coming to one server to another server. Here is the complete scnario:
There are 3 servers:
Machine A - IP: A.A.A.A - Client machine which wants to call an API there ...
1
vote
1
answer
56
views
Make locally deployed module join the process on integration environment easily
Our application has different modules deployed under many tomcats ondifferent physical machines. And we have an Apache proxy (mod_proxy) which forwards the client request to associated machine base on ...
2
votes
4
answers
500
views
redirecting www.foo.com to www.bar.com
Hay guys, I'm having a bit of an issue.
Say i have the domain www.foo.com, but this domain is framed-forwarded to www.bar.com.
www.foo.com is still in the address bar, but i now need to redirect www....
0
votes
2
answers
3k
views
Combination of Apache, Tomcat, port 80, 8080 and other stuff
I have a Centos5 with running httpd, mysql and tomcat6. All fine. My goal is to achieve the following
www.domain.com >>> forwards/proxies to www.domain.com:8080/myapplication (served by tomcat)
www....
1
vote
1
answer
855
views
Apache Redirect multiple domains to other directory
I have 1 IP number 83.87.163.224 and I have 4 multiple domainnames:
www.alurelingerie.nl - www.aaamsterdam.info - www.webshopdesigners.nl - www.rtps.eu
Every domeinname must redirect to a sub dir on ...
0
votes
1
answer
1k
views
Apache forward everything to Tomcat except webmail
I have my Apache HTTP server set up to forward all requests to Tomcat, i.e. proxy_ajp.conf looks like:
ProxyPass / ajp://localhost:8009/
where Tomcat is listening on port 8009. This works find ...
0
votes
1
answer
432
views
Apache/Rails: Forwarding PKI
I have a Linux/Apache/Rails stack hosting a data service. The data service is basically a front end for multiple data sources, akin to a federated search.
Queries to the service are authenticated ...
0
votes
1
answer
4k
views
Cannot access XAMPP (1.7.3) from my local network
I am running XAMPP 1.7.3 on windows 7. My problem is that when I try to access my server (localhost) from another computer, the server does not respond. For example, [on my computer] when I type in '...
1
vote
2
answers
2k
views
.htaccess: Forward ALL requests to another site
I have to forward an existing website to another one.
I want to forward each and every request on the old site to the root of the new site.
Example:
http://oldsite.tld/index.php?mode=foo&action=...
6
votes
3
answers
6k
views
Apache rewrite request using a different forward proxy
I would like to forward a request in Apache, based on a request header, to a different forward proxy. I think the best would be to use mod_rewrite, but it can use only a reverse proxy defined in the ...
2
votes
2
answers
2k
views
C#: get Client-IP after ProxyPass
My ASP.NET application checks the IP of the calling client.
But I have to host it behind a Linux-Box where Apache redirects it to an internal Windows 2003 Server running IIS like:
ProxyPass /srs ...