diff options
author | Frederick Muriuki Muriithi | 2023-11-13 08:08:05 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-11-13 08:08:05 +0300 |
commit | 9334654b34edad3fe9d6dbc336a9cb0410182e4f (patch) | |
tree | 0acd3f4de40ffdb774e36561d02cc64db5b50b1a /genenetwork-development.scm | |
parent | 8b112a636376ba33395909b7659d77bd8068d8d9 (diff) | |
download | gn-machines-9334654b34edad3fe9d6dbc336a9cb0410182e4f.tar.gz |
Allow http transport for proxied app
The application is behind a proxy and is running as http, therefore,
to allow the redirects within the application and responses to work,
we need to enable the http transport for the application.
Diffstat (limited to 'genenetwork-development.scm')
-rw-r--r-- | genenetwork-development.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm index 5d71787..62394f3 100644 --- a/genenetwork-development.scm +++ b/genenetwork-development.scm @@ -539,6 +539,7 @@ server described by CONFIG, a <genenetwork-configuration> object." "AUTH_DB=\"" auth-db-path "\"\n")) (setenv "GN_AUTH_INSTANCE_PATH" "/etc/genenetwork/conf/gn-auth") (setenv "HOME" "/tmp") + (setenv "AUTHLIB_INSECURE_TRANSPORT" "true") ;; Run gn-auth. (with-directory-excursion "gn-auth" (show-head-commit) |