Questions tagged [httpd]
The httpd tag has no summary.
39 questions
0
votes
2
answers
49
views
apache redirect url
I want to redirect the URL
https://olddoamin.com:9000 to https://newdomain.com
I have the following in my httpd.conf
<VirtualHost *:9000>
ServerName olddomain.com
# Simple redirect to ...
1
vote
0
answers
60
views
Apache mod_substitute & mod_proxy_html not doing anything, using mod_proxy in Plesk
I have this code (which works) in Plesk in Customers > Some Customer Name > new-domain.com > Hosting & DNS > Apache & nginx Settings > Additional Apache directives (for both ...
0
votes
1
answer
96
views
In an apache reverse proxy config, for the max attempts, do balancers count as workers?
Within the ProxyPass directive is a table titled
Balancer parameters and it has a row called maxattempts. The default is as follows:
One less than the number of workers, or 1 with a single worker.
...
1
vote
1
answer
2k
views
AH00128: File does not exist - index.html no loading
I want /var/www/thepowerhousemethod.org/public_html/index.html to load. Currently another page is loading instead.
/var/www/thepowerhousemethod.org/public_html/index.html is displaying in green font ...
1
vote
1
answer
198
views
Pointing domain to my IP an port [duplicate]
I have a server with ip
55.335.32.56:4000
but want to use my domain
user.example.com
I am trying to do this with apache via httpd:vhost.conf
Listen 4000
<VirtualHost 55.335.32.56:4000>
...
2
votes
0
answers
133
views
While setting up http to https redirect on Apache (with Drupal and certbot) it broke http access and fails to redirect
I am trying to set up a Drupal site on a VPS. It was working. I used certbot to set up https, which worked when going to https://example.com . Going to example.com was in http.
I vaguely followed ...
1
vote
1
answer
852
views
HTTP website redirect all except 1 file to https
I have a website where I'm wanting 1 file (version.txt) to be accessible via regular HTTP, but I want everything else to redirect to https. To do this, I added the "RedirectMatch" line below ...
2
votes
1
answer
738
views
How do I match string in URL path at any level to specific file using mod_rewrite
It's likely that I missed the answer already because I'm not even sure how to phrase this, but here it goes...
I'm attempting to create a healthcheck virtual--something "file", maybe, so ...
2
votes
1
answer
2k
views
How can I limit .htaccess to current directory scope only?
I have something like this:
Options -Indexes
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?path=$1 [NC,L,QSA]
Order deny,allow
...
1
vote
1
answer
712
views
AH00558: httpd: Could not reliably determine server's fully qualified servername error after creating VirtualHost
I have installed an Apache server in CentOS 8 and it was serving both http and https pages correctly, that is, I could view the Apache test page when connected to the server from my browser
I used ...
1
vote
0
answers
47
views
Evil twin httpd caused by failed Roundcube installation [closed]
Note: I originally asked this on Server Fault and was told it was against the rules for mentioning Webuzo, so please do not ask me to take it there.
System: VPS running CentOS 7 and Webuzo. httpd and ...
2
votes
1
answer
1k
views
HTTPD Redirect Doesn't Work with Environment Variables
We want to redirect users from an old domain to a new domain defined in an environment variable:
SetEnvIfExpr true SERVER_HOST_NAME=mynewdomain.example
The follwoing works in Apache 2.4 to redirect ...
1
vote
1
answer
24
views
Apache redirection rules for wordpress sites
I want to redirect http://www.example.com/findyourname/ to http://www.newexample.com./findyourname/
http://www.example.com is a wordpress site , so when accessing http://www.example.com/findyourname/ ...
0
votes
0
answers
154
views
Apache httpd error
On the control panel of the sharing hosting that I purchased, sometimes I go to see Last log lines containing errors.
Today I read this:
Sat, 18 May 2019 13:09:00 GMT [notice] - www.example.com - ...
2
votes
1
answer
2k
views
How can I make Apache httpd log IPv6 addresses?
I have an Apache httpd web server and like to monitor my website's access_log files. I've noticed that I only ever see IPv4 addresses there. My personal computer has an IPv6 address, but this never ...