apache,wamp,wampserver,apache2.4
Have you somehow managed to turn off the autoindex_module in httpd.conf Check using the wampmanager menus like so: start WAMPServer left click wampmanager -> Apache -> Apache modules There should be a line in the menu that shows called autoindex_module and it should have a tick beside it. If the...
python-2.7,mod-wsgi,apache2.4,ubuntu-14.04
The documentation explains it at: http://code.google.com/p/modwsgi/wiki/CheckingYourInstallation#Python_Shared_Library ...
apache,varnish,varnish-vcl,apache2.4,centos7
You need to allow traffic from the Internet to port 80. Edit the iptables config as follows: # sample configuration for iptables service # you can edit this manually or use system-config-firewall # please do not ask us to add additional ports/services to this default configuration *filter :INPUT ACCEPT [0:0]...
laravel-4,amazon-ec2,ssl-certificate,apache2.4,php-5.6
Try changing the app/config/email.php smtp to mail...
apache,.htaccess,apache2.4,mod-authz-host
This works, it displays a "Forbidden, You don't have permission to access /folder/ on this server." instead of "Directory listings denied." I am able to access files within that folder still. <If "%{REMOTE_ADDR} == '192.169.0.95'"> Options +Indexes +FollowSymLinks +MultiViews Require all granted </If> <Else> Options -Indexes +FollowSymLinks +MultiViews Require all...
apache,vhosts,hosts,apache2.4,hosts-file
Even if the solution is probably not that, you should check first that apache can access to you directory. This mean that your folder should have the read right to "others" or learn how to configure acls on linux. $ ls -la /home/nek # ... drwxrwxr-x 6 nek nek 4096...
apache,.htaccess,mod-rewrite,vhosts,apache2.4
Inside of C:/xampp/apache/conf/extra/ some alias was conflicting with my application route. I have removed these unecessary alias and all works fine! <IfModule alias_module> Alias /account "C:/xampp/account-system/htdocs" [...] </IfModule> Thanks!...
apache,apache2.4,pseudo-streaming
For whatever reason I couldn't get the module to work my initial go around (I tried more than once). However, I got it to work today. Not sure what I did different but I just followed the instructions below (again). http://h264.code-shop.com/trac/wiki/Mod-H264-Streaming-Apache-Version2...
There are several tools available to test your website having SHA1 or SHA2 certificate. https://www.sha2sslchecker.com/ https://shaaaaaaaaaaaaa.com/ You can also check it manually. Browse site in chrome. Click on the green padlock. Click on "certificate information" under the "connection" tab. Click on "Details" tab where you can find secure hash algorithm:...
You should use environment variables for this. In Apache, for instance, you can use mod_env to set an environment variable in your VirtualHost directive for your test server: SetEnv APPLICATION_ENV testing And for your live server: SetEnv APPLICATION_ENV production You would then use it in PHP: $environment = getenv('APPLICATION_ENV');...
virtualhost,wampserver,apache2.4
There are a few things that you have not taken into account. When you create Virtual Hosts Apache ignores the host defined in httpd.conf so you also need to create a Virtual Host for localhost. This explains why you cannot get to localhost when you have activated Virtual Hosts. Apache...
wordpress,apache,.htaccess,http-authentication,apache2.4
I found the answer, finally, in this Stack Exchange question When using url rewriting, environment variables are saved as REDIRECT_variable_name. So adding the line Require env REDIRECT_allow_access inside the <RequireAny> block solved the problem for me....
You can change SSLProtocol directive in your httpd-ssl.conf file as below SSLProtocol all -SSLv3 More details can be found here UPDATE SSLEngine on SSLProtocol all -SSLv3 ...
I suggest you to list down your customization in one of the file say my.conf. And as described on the Apache Site If you need to have specifically named configuration files for different services, you must use this: httpd.exe -k install -n "MyServiceName" -f "c:\files\my.conf" Good Luck!...
The line would return a 403 if either: HTTP_CLIENT_IP header is present HTTP_X_FORWARDED_FOR header is present $_SERVER['REMOTE_ADDR'] is not one of '127.0.0.1', 'fe80::1', '::1' Probably you are setting the HTTP_X_FORWARDED_FOR header in varnish, or varnish is setting it for you, depending on the varnish version. Unset it or rewrite the...
I found the answer to my own question after looking at apache logs and help from others First thing I changed my website's apache conf file to <VirtualHost *:80> ServerAdmin [email protected] ServerName mytestsite.com ServerName <ServerIpAddress> DocumentRoot /var/www <Directory /var/www/mytestsite.com/public_html**/> Options -Indexes +FollowSymLinks +MultiViews AllowOverride All Order allow,deny allow from all...