add DJANGO_FORCE_SCRIPT_NAME env var to change Djangos FORCE_SCRIPT_NAME if needed, part of support for running TubeSync in a /suburi and not a domain root, resolves #18
This commit is contained in:
		
							parent
							
								
									b45231f533
								
							
						
					
					
						commit
						304cc153cf
					
				|  | @ -298,8 +298,9 @@ There are a number of other environment variables you can set. These are, mostly | |||
| useful if you are manually installing TubeSync in some other environment. These are: | ||||
| 
 | ||||
| | Name                     | What                                  | Example                            | | ||||
| | ----------------- | ------------------------------------- | ---------------------------------- | | ||||
| | DJANGO_SECRET_KEY | Django secret key                     | YJySXnQLB7UVZw2dXKDWxI5lEZaImK6l   | | ||||
| | ------------------------ | ------------------------------------- | ---------------------------------- | | ||||
| | DJANGO_SECRET_KEY        | Django's SECRET_KEY                   | YJySXnQLB7UVZw2dXKDWxI5lEZaImK6l   | | ||||
| | DJANGO_FORCE_SCRIPT_NAME | Django's FORCE_SCRIPT_NAME            | /somepath                          | | ||||
| | TUBESYNC_DEBUG           | Enable debugging                      | True                               | | ||||
| | TUBESYNC_HOSTS           | Django's ALLOWED_HOSTS                | tubesync.example.com,otherhost.com | | ||||
| | GUNICORN_WORKERS         | Number of gunicorn workers to spawn   | 3                                  | | ||||
|  |  | |||
|  | @ -15,6 +15,7 @@ SECRET_KEY = str(os.getenv('DJANGO_SECRET_KEY', 'tubesync-django-secret')) | |||
| ALLOWED_HOSTS_STR = str(os.getenv('TUBESYNC_HOSTS', '127.0.0.1,localhost')) | ||||
| ALLOWED_HOSTS = ALLOWED_HOSTS_STR.split(',') | ||||
| DEBUG = True if os.getenv('TUBESYNC_DEBUG', False) else False | ||||
| FORCE_SCRIPT_NAME = os.getenv('DJANGO_FORCE_SCRIPT_NAME', None) | ||||
| 
 | ||||
| 
 | ||||
| TIME_ZONE = os.getenv('TZ', 'UTC') | ||||
|  |  | |||
|  | @ -41,6 +41,7 @@ MIDDLEWARE = [ | |||
| 
 | ||||
| 
 | ||||
| ROOT_URLCONF = 'tubesync.urls' | ||||
| FORCE_SCRIPT_NAME = None | ||||
| 
 | ||||
| 
 | ||||
| TEMPLATES = [ | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue