forked from GithubMirrors/cardconjurer
		
	- Moving to HTMX integration - Improving links for local use - File structure - Hiding clutter
		
			
				
	
	
		
			30 lines
		
	
	
		
			722 B
		
	
	
	
		
			ApacheConf
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			722 B
		
	
	
	
		
			ApacheConf
		
	
	
	
	
	
ErrorDocument 404 core/404.html
 | 
						|
 | 
						|
<IfModule mod_headers.c>
 | 
						|
	#Header set Access-Control-Allow-Origin "*"
 | 
						|
	#YEAR
 | 
						|
	<filesMatch "\.(png|svg|ttf|ico)$">
 | 
						|
	    Header set Cache-Control "max-age=31536000, public"
 | 
						|
	</filesMatch>
 | 
						|
	#MONTH
 | 
						|
	<filesMatch "\.(css)$">
 | 
						|
	    Header set Cache-Control "max-age=2678400, public"
 | 
						|
	</filesMatch>
 | 
						|
	#WEEK
 | 
						|
	<filesMatch "\.(js|php)$">
 | 
						|
	    Header set Cache-Control "max-age=604800, public"
 | 
						|
	</filesMatch>
 | 
						|
	#DAY
 | 
						|
	<files header.php>
 | 
						|
	    Header set Cache-Control "max-age=86400, public"
 | 
						|
	</files>
 | 
						|
	#DAY
 | 
						|
	<filesMatch "\.(js)$">
 | 
						|
	    Header set Cache-Control "max-age=86400, public"
 | 
						|
	</filesMatch>
 | 
						|
	#HOUR
 | 
						|
	#<files creator.js>
 | 
						|
	#    Header set Cache-Control "max-age=3600, public"
 | 
						|
	#</files>
 | 
						|
</IfModule>
 |