mirror of
				https://github.com/cinnyapp/cinny.git
				synced 2025-11-04 14:30:29 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			192 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			192 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
# nginx configuration
 | 
						|
 | 
						|
## Insert wasm type into nginx mime.types file so they load correctly.
 | 
						|
 | 
						|
`/etc/nginx/mime.types`:
 | 
						|
```
 | 
						|
types {
 | 
						|
..
 | 
						|
    application/wasm                      wasm;
 | 
						|
..
 | 
						|
}
 | 
						|
```
 |