macOS runs a service on port 5000 by default. this doesn't actually prevent the backend server from *starting*, or the rate limiter proxy from working, but it *does* mean that when the backend restarts, if the proxy sends a request, it will stop working until it's restarted. the easiest way to work around this is by just changing the port the backend listens on. this does not change the ports used in the docker configuration.
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			294 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			294 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| # Example .env file--DO NOT EDIT, copy to .env or .env.local then edit
 | |
| PUBLIC_LANGUAGE=en
 | |
| PUBLIC_BASE_URL=https://pronouns.cc
 | |
| PUBLIC_SHORT_URL=https://prns.cc
 | |
| PUBLIC_API_BASE=https://pronouns.cc/api
 | |
| PRIVATE_API_HOST=http://localhost:5003/api
 | |
| PRIVATE_INTERNAL_API_HOST=http://localhost:6000/api
 |