mirror of
				https://github.com/TitanEmbeds/Titan.git
				synced 2025-11-04 07:47:10 +01:00 
			
		
		
		
	Make ssl configuratable
This commit is contained in:
		@@ -35,7 +35,8 @@ app.secret_key = config['app-secret']
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
db.init_app(app)
 | 
					db.init_app(app)
 | 
				
			||||||
rate_limiter.init_app(app)
 | 
					rate_limiter.init_app(app)
 | 
				
			||||||
sslify = SSLify(app, permanent=True)
 | 
					if config.get("enable-ssl", False):
 | 
				
			||||||
 | 
					    sslify = SSLify(app, permanent=True)
 | 
				
			||||||
socketio.init_app(app, message_queue=config["redis-uri"], path='gateway', async_mode=config.get("websockets-mode", None))
 | 
					socketio.init_app(app, message_queue=config["redis-uri"], path='gateway', async_mode=config.get("websockets-mode", None))
 | 
				
			||||||
babel.init_app(app)
 | 
					babel.init_app(app)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user