mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	allow document display with angular dev server
This commit is contained in:
		| @@ -125,7 +125,12 @@ TEMPLATES = [ | |||||||
| # NEVER RUN WITH DEBUG IN PRODUCTION. | # NEVER RUN WITH DEBUG IN PRODUCTION. | ||||||
| DEBUG = __get_boolean("PAPERLESS_DEBUG", "NO") | DEBUG = __get_boolean("PAPERLESS_DEBUG", "NO") | ||||||
|  |  | ||||||
| X_FRAME_OPTIONS = 'SAMEORIGIN' | if DEBUG: | ||||||
|  |     X_FRAME_OPTIONS = '' | ||||||
|  |     # this should really be 'allow-from uri' but its not supported in any mayor | ||||||
|  |     # browser. | ||||||
|  | else: | ||||||
|  |     X_FRAME_OPTIONS = 'SAMEORIGIN' | ||||||
|  |  | ||||||
| # We allow CORS from localhost:8080 | # We allow CORS from localhost:8080 | ||||||
| CORS_ORIGIN_WHITELIST = tuple(os.getenv("PAPERLESS_CORS_ALLOWED_HOSTS", "http://localhost:8080,https://localhost:8080").split(",")) | CORS_ORIGIN_WHITELIST = tuple(os.getenv("PAPERLESS_CORS_ALLOWED_HOSTS", "http://localhost:8080,https://localhost:8080").split(",")) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Jonas Winkler
					Jonas Winkler