Default puma to running on localhost only. (#8429)
This commit is contained in:
		
							parent
							
								
									93537c5560
								
							
						
					
					
						commit
						2a59c6a5e7
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -4,7 +4,8 @@ threads threads_count, threads_count
 | 
			
		|||
if ENV['SOCKET'] then
 | 
			
		||||
  bind 'unix://' + ENV['SOCKET']
 | 
			
		||||
else
 | 
			
		||||
  port ENV.fetch('PORT') { 3000 }
 | 
			
		||||
  port_num = ENV.fetch('PORT') { 3000 }
 | 
			
		||||
  bind "tcp://127.0.0.1:#{port_num}"
 | 
			
		||||
end
 | 
			
		||||
 | 
			
		||||
environment ENV.fetch('RAILS_ENV') { 'development' }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue