mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 18:08:11 +00:00 
			
		
		
		
	
		
			
	
	
		
			10 lines
		
	
	
		
			217 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			217 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
|   | const serverConfig = ({ env }) => ({ | ||
|  |   host: env('HOST', '0.0.0.0'), | ||
|  |   port: env.int('PORT', 1337), | ||
|  |   app: { | ||
|  |     keys: env.array('APP_KEYS', ['toBeModified1', 'toBeModified2']), | ||
|  |   }, | ||
|  | }); | ||
|  | 
 | ||
|  | export default serverConfig; |