mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-10-31 03:14:31 +01:00 
			
		
		
		
	Simple example configuration, quick & dirty but functional. Didn't care about a config, as that will be handled by the setup wizard. refs #6402
		
			
				
	
	
		
			20 lines
		
	
	
		
			470 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			470 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| Alias /icingaweb "/usr/share/icingaweb/public"
 | |
| 
 | |
| <Directory "/usr/share/icingaweb/public">
 | |
|   Options SymLinksIfOwnerMatch
 | |
|   AllowOverride None
 | |
|   Order allow,deny
 | |
|   Allow from all
 | |
| 
 | |
|   # SetEnv ICINGAWEB_CONFIGDIR /etc/icingaweb
 | |
| 
 | |
|   RewriteEngine on
 | |
|   RewriteBase /icingaweb/
 | |
|   RewriteCond %{REQUEST_FILENAME} -s [OR]
 | |
|   RewriteCond %{REQUEST_FILENAME} -l [OR]
 | |
|   RewriteCond %{REQUEST_FILENAME} -d
 | |
|   RewriteRule ^.*$ - [NC,L]
 | |
|   RewriteRule ^.*$ index.php [NC,L]
 | |
| </Directory>
 | |
| 
 |