mirror of
https://github.com/healthchecks/healthchecks.git
synced 2026-04-25 15:05:49 +03:00
[GH-ISSUE #98] non-developmnet mode? #63
Labels
No labels
bug
bug
bug
feature
good-first-issue
new integration
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/healthchecks#63
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @claytondukes on GitHub (Nov 29, 2016).
Original GitHub issue: https://github.com/healthchecks/healthchecks/issues/98
Hi, is there a guide for setting this up on an intranet in production mode?
I have it installed, but after setting Debug = False, it still loads using http://127.0.0.1:8080
@alanivey commented on GitHub (Feb 23, 2017):
👍
When searching for Django errors with Debug=False, it's nearly all solutions with setting
ALLOWED_HOSTS = [ "$HOSTNAME" ]or similar. That alone did not resolve it for me, even with an asterisk as the provided value. For my own paranoia, I have my app running with basic authentication (over TLS) on all URLs except /badge/ and /ping/, but I'd ultimately like to be able to turn debug off.@iphoting commented on GitHub (Feb 23, 2017):
Consider turning logging as well to obtain stacktraces of the error. One of them I noted was solved by building static assets and compressing them.
@rawlk commented on GitHub (May 24, 2019):
Don't suppose y'all have stumbled across turning off "Debug" mode?
@ttr commented on GitHub (Jul 4, 2019):
in local_settings.py
DEBUG = Falseno quotes around argument, capital DEBUG.
Also IIRC site_root needs to be set.
@cuu508 commented on GitHub (Sep 4, 2019):
I've updated README with a "Running in Production" section. It's pretty minimal and some parts likely need to be expanded on. But I also think it will be out of scope to go into full detail about configuring the web server, the task runner, the database, external monitoring etc. etc.