search for: directoryindex

Displaying 20 results from an estimated 46 matches for "directoryindex".

2006 Oct 13
1
Apache DirectoryIndex
I'd like to change the DirectoryIndex document for just the DocumentRoot, leaving the default DirectoryIndex setting for all other directories. However, when I set DirectoryIndex in the <Directory "/var/www/html"> section of /etc/httpd/conf/httpd.conf it seems to set it for *all* directories. DirectoryIndex doesn...
2014 Feb 06
3
Virtual Hosts question
...directive: /var/www/wordpress/" and googling didn't help. I have my httpd.conf and error.log below. Thank you, Joe ============== httpd.conf ============== ServerName 192.168.0.99 NameVirtualHost *:80 <VirtualHost *:80> ServerName IDoNotExist.com DocumentRoot /var/www/html DirectoryIndex Index.html index.html </VirtualHost> <VirtualHost *:80> ServerName X.com ServerAlias www.X.com DocumentRoot /var/www/wordpress DirectoryIndex Index.html index.html index.php Index.php CustomLog logs/access_log_custom common </VirtualHost> ============== httpd.conf =====...
2003 Jul 23
1
problem w/ php3+php4
Hello, Has anybody experienced any problems with php3+php4 combo in systems newer than 4.6-STABLE (as of June-Aug 2002)? Briefly, the problem looks very similar to what is stated in the following reports: http://groups.google.com/groups?q=%22php3+kills+apache%22&hl=ru&lr=&ie=UTF-8&oe=UTF-8&selm=wqz8yrfzbug.wl%40hurt.theclones.net&rnum=1
2007 Jul 02
3
PHP question on CentOS
I'm installing NagiosQL, and it's not displaying the http://mybox.com/nagiosql/index.php page, so I suspect that PHP isn't working correctly. " -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20070702/0427e5a4/attachment.html>
2019 Dec 09
4
PHP handler for .html files - C7
...<Files ".user.ini"> <IfModule mod_authz_core.c> Require all denied </IfModule> <IfModule !mod_authz_core.c> Order allow,deny Deny from all Satisfy All </IfModule> </Files> AddType text/html .php .htm .html DirectoryIndex index.php <IfModule mod_php7.c> <FilesMatch \.(php|phar|htm|hml)$> SetHandler application/x-httpd-php </FilesMatch> php_value session.save_handler "files" php_value session.save_path "/var/lib/php/session" php_value soap.wsdl_cac...
2008 Jun 24
1
Added Download page to wiki
Hi, I have added a Download page to the wiki. Feel free to improve it (but please do not make it more complex than it already is :-)) I would prefer to make it even more simple, but hate to have the architecture-selection done by DirectoryIndex. Also the link behind each architecture looks awful and may scare people away. It would be much better to have a single link that automatically translates into the closest mirror. Or have a dynamic selection. (Can we write MoinMoin plugins for doing this ?) I chose to not add a bittorrent link...
2008 Feb 28
2
smokeping on CentOS questions
I'm having some problems getting CentOS to serve up my Smokeping pages ( http://oss.oetiker.ch/smokeping/) However, I'm having problems getting the pages to serve up correctly. Here is a quick run down of what I've done. (1) wget and untar to /usr/local/smokeping (2) chown -R root:root /usr/local/smokeping (3) modifying to the following files to reflect my environment (not sure if
2018 Nov 30
1
Php script not running
...Cause the PHP interpreter to handle files with a .php extension. # <FilesMatch \.php$> SetHandler application/x-httpd-php </FilesMatch> # # Allow php to handle Multiviews # AddType text/html .php # # Add index.php to the list of files that will be served as directory # indexes. # DirectoryIndex index.php # # Uncomment the following lines to allow PHP to pretty-print .phps # files as PHP source code: # #<FilesMatch \.phps$> # SetHandler application/x-httpd-php-source #</FilesMatch> # # Apache specific PHP configuration options # those can be override in each configured vho...
2009 Sep 17
1
[PATCH server] oVirt server single network installer
...yPass /ovirt http://localhost:3000/ovirt -ProxyPassReverse /ovirt http://localhost:3000/ovirt -ProxyPassReverse /ovirt/images ! -ProxyPassReverse /ovirt/stylesheets ! -ProxyPassReverse /ovirt/errors ! - -</VirtualHost> - -Alias /terminal /usr/share/ovirt-anyterm -<Location /terminal> - DirectoryIndex anyterm.html -</Location> diff --git a/installer/bin/ovirt-installer b/installer/bin/ovirt-installer index a38ea83..5d6350f 100755 --- a/installer/bin/ovirt-installer +++ b/installer/bin/ovirt-installer @@ -172,13 +172,11 @@ else end end -guest_httpd_dev = prompt_for_interface("E...
2015 Aug 27
7
apache mysterious 404 error
...comanystore ServerName stage.theshopatmycomanystudios.com ServerAlias 173.213.219.48 ErrorLog logs/store_error_log LogFormat "%h %l %u %t \"%r\" %>s %b" common CustomLog logs/store_access_log common <Directory /var/www/mycomanystore> DirectoryIndex index.html AddHandler cgi-script .cgi Options -Indexes +FollowSymLinks +ExecCGI +Includes AllowOverride All Require all granted </Directory> ExpiresActive On ExpiresDefault "access plus 30 minute" RewriteEngine On RewriteCond %{RE...
2008 Oct 11
5
Rails + Apache2 + Balancer Manager - PHP doesn't work
Hi I have a Debian Server and I managed that Ruby works with Apache2 and the Balancer Manager that listen to the Mongrel server. The Problem is that PHP files don''t work anymore. How do I have to configurate the Balance Manager that PHP is working again like without the Balance Manager? Greetings Andi -- Posted via http://www.ruby-forum.com/.
2015 Aug 27
4
apache mysterious 404 error
...> > > > ErrorLog logs/store_error_log > > > > LogFormat "%h %l %u %t \"%r\" %>s %b" common > > > > CustomLog logs/store_access_log common > > > > <Directory /var/www/mycomanystore> > > > > DirectoryIndex index.html > > > > AddHandler cgi-script .cgi > > > > Options -Indexes +FollowSymLinks +ExecCGI +Includes > > > > AllowOverride All > > > > Require all granted > > > > </Directory> > > > >...
2007 Oct 09
4
Directory index forbidden by rule: /var/www/html/
I'm looking to troubleshoot this error when I run "tail /etc/httpd/logs/error_log" [Tue Oct 09 07:22:59 2007] [error] [client 127.0.0.1] Directory index forbidden by rule: /var/www/html/ (I get this when I run Nagios' "./check_http -H 127.0.0.1".) All I did was install CentOS and then modify httpd.conf to include "ServerName 192.168.1.10:80" and also
2019 Dec 09
0
PHP handler for .html files - C7
...;IfModule mod_authz_core.c> > Require all denied > </IfModule> > <IfModule !mod_authz_core.c> > Order allow,deny > Deny from all > Satisfy All > </IfModule> > </Files> > AddType text/html .php .htm .html > DirectoryIndex index.php > <IfModule mod_php7.c> > <FilesMatch \.(php|phar|htm|hml)$> > SetHandler application/x-httpd-php > </FilesMatch> > php_value session.save_handler "files" > php_value session.save_path "/var/lib/php/session" &g...
2019 Dec 09
0
PHP handler for .html files - C7
...authz_core.c> > Require all denied > </IfModule> > <IfModule !mod_authz_core.c> > Order allow,deny > Deny from all > Satisfy All > </IfModule> > </Files> > AddType text/html .php .htm .html > DirectoryIndex index.php > <IfModule mod_php7.c> > <FilesMatch \.(php|phar|htm|hml)$> Typo: ^^^^^? -- Leon
2018 Feb 04
0
How to grant user access to his .dovecot.sieve.log?
Hi Gabriel, I'm trying to implement what you suggested using apache mod_userdir with === UserDir /srv/dovecot <DirectoryMatch "^/srv/dovecot/(?<WHICHUSER>[^/]+)"> Require user %{env:MATCH_WHICHUSER} DirectoryIndex .dovecot.sieve.log ... </DirectoryMatch> === I still need to find how to set up right permissions for these logs without too much brute force. It looks like this way I can get what I want, but I really hoped to find some better way: my Roundcube installation is on the load-balanced web farm a...
2009 May 01
0
Web Serving
Hi All, My quest is going slowly but surely and I am learning a lot. I use ColdFusion. I installed in on My CentOS 5.3 instance and all was well. I added: DirectoryIndex index.html index.html.var index.php index.cfm index.cfml to httpd.conf and restarted. I put an index.cfm page in /var/www/html and removed the standard index.html and I can see when I hit my IP it works. I then created virtual hosts for a few coldfusion websites in httpd.conf and added the...
2006 May 16
0
Routing and PHP scripts, not loading the index.php
I''m in the process of changing a PHP site to ROR. I think this is a routing problem. Going to: http://www.mycoolsite.com/ doesn''t load up the index.php .. I have index.php in the DirectoryIndex directive in Apache2. http://www.mycoolsite.com/index.php Works however, if you go to any other urls that have no file name specified (since index.php is default) http://www.mycoolsite.com/account/ Also same problem. I''ve looked and googled for the past few hours, I can''t...
2006 Mar 16
0
RewriteRule with scgi on Apache 2
Hi. I am trying to run RubyOnRails with scgi on RedHat ES4. I want to direct all access of "/" to index.html I do have DirectoryIndex in httpd.conf. But after I run RubyOnRails, the configuration stopped working. I tried many things, but it doesn''t work. Like: RewriteRule ^$ index.html [QSA] RewriteRule ^/$ /var/www/public/index.html [R] If I access /index.html, everything works fine. If I access /, it says "The...
2007 Dec 13
1
phpmyadmin issue- what's really working at this time?
Basic phpmyadmin issue, but I can't seem to solve it. Qube3 with CentOS 4.5, PHP4.3.9, BlueQuartz. phpmyadmin was working a while but after long disuse, the index.php now just displays as text. DirectoryIndex in httpd.conf at /etc/httpd/conf/httpd.conf /etc/admserv/conf/httpd.conf has index.php added. /etc/httpd/conf.d/php.conf if I uncomment the AddType to bring in *.php, the phpmyadmin startup breaks but clicking on the direct link to config.inc.php gives a blank screen (so I guess loads fine)....