mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-30 19:04:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
 | |
| 
 | |
| namespace Icinga\Module\Setup\Webserver;
 | |
| 
 | |
| use Icinga\Module\Setup\Webserver;
 | |
| 
 | |
| /**
 | |
|  * Generate Apache 2.x configuration
 | |
|  */
 | |
| class Apache extends Webserver
 | |
| {
 | |
|     /**
 | |
|      * @return array
 | |
|      */
 | |
|     protected function getTemplate()
 | |
|     {
 | |
|             return  <<<'EOD'
 | |
| Alias {urlPath} "{documentRoot}"
 | |
| 
 | |
| <Directory "{documentRoot}">
 | |
|     Options SymLinksIfOwnerMatch
 | |
|     AllowOverride None
 | |
| 
 | |
|     <IfModule mod_authz_core.c>
 | |
|         # Apache 2.4
 | |
|         <RequireAll>
 | |
|             Require all granted
 | |
|         </RequireAll>
 | |
|     </IfModule>
 | |
| 
 | |
|     <IfModule !mod_authz_core.c>
 | |
|         # Apache 2.2
 | |
|         Order allow,deny
 | |
|         Allow from all
 | |
|     </IfModule>
 | |
| 
 | |
|     SetEnv ICINGAWEB_CONFIGDIR "{configDir}"
 | |
| 
 | |
|     EnableSendfile Off
 | |
| 
 | |
|     <IfModule mod_rewrite.c>
 | |
|         RewriteEngine on
 | |
|         RewriteBase {urlPath}/
 | |
|         RewriteCond %{REQUEST_FILENAME} -s [OR]
 | |
|         RewriteCond %{REQUEST_FILENAME} -l [OR]
 | |
|         RewriteCond %{REQUEST_FILENAME} -d
 | |
|         RewriteRule ^.*$ - [NC,L]
 | |
|         RewriteRule ^.*$ index.php [NC,L]
 | |
|     </IfModule>
 | |
| 
 | |
|     <IfModule !mod_rewrite.c>
 | |
|         DirectoryIndex error_norewrite.html
 | |
|         ErrorDocument 404 /error_norewrite.html
 | |
|     </IfModule>
 | |
| </Directory>
 | |
| EOD;
 | |
| 
 | |
|     }
 | |
| }
 |