Skip to content

Commit

Permalink
Update vars.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Aadhi000 authored Dec 10, 2022
1 parent 6ab2275 commit 2e20c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Adarsh/vars.py
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ class Var(object):

else:
ON_HEROKU = False
FQDN = str(getenv('FQDN', BIND_ADRESS)) if not ON_HEROKU or getenv('FQDN') else APP_NAME+'.herokuapp.com'
FQDN = str(getenv('FQDN', BIND_ADRESS)) if not ON_HEROKU or getenv('FQDN') else APP_NAME+'.railway.app'
HAS_SSL=bool(getenv('HAS_SSL',False))
if HAS_SSL:
URL = "https://{}/".format(FQDN)

0 comments on commit 2e20c6c

Please sign in to comment.