mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-04 11:54:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			214 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			214 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = ({ env }) => ({
 | 
						|
  host: env('HOST', '0.0.0.0'),
 | 
						|
  port: env.int('PORT', 1337),
 | 
						|
  admin: {
 | 
						|
    // autoOpen: true,
 | 
						|
    auth: {
 | 
						|
      secret: env('ADMIN_JWT_SECRET', 'example-token'),
 | 
						|
    },
 | 
						|
  },
 | 
						|
});
 |