mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			409 B
		
	
	
	
		
			ApacheConf
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			409 B
		
	
	
	
		
			ApacheConf
		
	
	
	
	
	
| #######################
 | |
| # HOSTNAME
 | |
| ######################
 | |
| 
 | |
| <VirtualHost 127.0.0.1:PORT>
 | |
|     ServerAdmin patrick@heysparkbox.com
 | |
|     DocumentRoot "/var/www/HOSTNAME"
 | |
|     ServerName HOSTNAME
 | |
| 
 | |
|     <Directory "/var/www/HOSTNAME">
 | |
|        Options Indexes MultiViews FollowSymLinks
 | |
|        AllowOverride All
 | |
|        Order allow,deny
 | |
|        Allow from all
 | |
|        DirectoryIndex index.php
 | |
|    </Directory>
 | |
| </VirtualHost>
 |