mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-03 19:36:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			181 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			181 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export default ({ env }) => ({
 | 
						|
  host: env('HOST', '0.0.0.0'),
 | 
						|
  port: env.int('PORT', 1337),
 | 
						|
  app: {
 | 
						|
    keys: env.array('APP_KEYS', ['toBeModified1', 'toBeModified2']),
 | 
						|
  },
 | 
						|
});
 |