Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix file url #35

Merged
merged 18 commits into from
Jun 25, 2024
2 changes: 1 addition & 1 deletion munkiwebadmin/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
CSRF_TRUSTED_ORIGINS = os.environ.get("CSRF_TRUSTED_ORIGINS", "http://localhost").split(" ")

# Munki repo settings
MUNKI_REPO_URL = os.getenv('MUNKI_REPO_URL', '/munkirepo')
MUNKI_REPO_URL = os.getenv('MUNKI_REPO_URL', 'file:///munkirepo')
MUNKI_REPO_PLUGIN = os.getenv('MUNKI_REPO_PLUGIN', 'FileRepo')
MUNKITOOLS_DIR = os.getenv('MUNKITOOLS_DIR', '/munkitools')
MAKECATALOGS_PATH = MUNKITOOLS_DIR + '/makecatalogs'
Expand Down
Loading