mirror of
				https://github.com/optim-enterprises-bv/Mailu.git
				synced 2025-10-31 01:57:59 +00:00 
			
		
		
		
	Parameterize redis address
This commit is contained in:
		| @@ -19,6 +19,7 @@ v1.6.1 - unreleased | |||||||
| - Bug: Implement mailustart to resolve webmail in admin ([#716](https://github.com/Mailu/Mailu/issues/716)) | - Bug: Implement mailustart to resolve webmail in admin ([#716](https://github.com/Mailu/Mailu/issues/716)) | ||||||
| - Bug: Rename cli commands and their options (replace "\_" with "-") ([#877](https://github.com/Mailu/Mailu/issues/877)) | - Bug: Rename cli commands and their options (replace "\_" with "-") ([#877](https://github.com/Mailu/Mailu/issues/877)) | ||||||
| - Bug: Fix typo in migration script ([#905](https://github.com/Mailu/Mailu/issues/905)) | - Bug: Fix typo in migration script ([#905](https://github.com/Mailu/Mailu/issues/905)) | ||||||
|  | - Bug: Fix redis hostname in admin | ||||||
|  |  | ||||||
| v1.6.0 - 2019-01-18 | v1.6.0 - 2019-01-18 | ||||||
| ------------------- | ------------------- | ||||||
|   | |||||||
| @@ -8,8 +8,8 @@ DEFAULT_CONFIG = { | |||||||
|     'BABEL_DEFAULT_LOCALE': 'en', |     'BABEL_DEFAULT_LOCALE': 'en', | ||||||
|     'BABEL_DEFAULT_TIMEZONE': 'UTC', |     'BABEL_DEFAULT_TIMEZONE': 'UTC', | ||||||
|     'BOOTSTRAP_SERVE_LOCAL': True, |     'BOOTSTRAP_SERVE_LOCAL': True, | ||||||
|     'RATELIMIT_STORAGE_URL': 'redis://redis/2', |     'RATELIMIT_STORAGE_URL': 'redis://%s/2' % (os.getenv("REDIS_ADDRESS", "redis")), | ||||||
|     'QUOTA_STORAGE_URL': 'redis://redis/1', |     'QUOTA_STORAGE_URL': 'redis://%s/1' % (os.getenv("REDIS_ADDRESS", "redis")), | ||||||
|     'DEBUG': False, |     'DEBUG': False, | ||||||
|     'DOMAIN_REGISTRATION': False, |     'DOMAIN_REGISTRATION': False, | ||||||
|     'TEMPLATES_AUTO_RELOAD': True, |     'TEMPLATES_AUTO_RELOAD': True, | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Mildred Ki'Lya
					Mildred Ki'Lya