-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
327689d
commit 5475d72
Showing
1 changed file
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
admin_interface_bind_ip = "127.0.0.1" # Set to "0.0.0.0" to allow external connections; bad idea without user roles (use SSH port forwarding for now to access from another machine) | ||
admin_interface_bind_port = "51422" # The port you'll use to access the web interface. Certbot/NGINX can be used to forward requests at ports 80/443 | ||
admin_interface_use_ssl = true # Whether to use SSL; you may want to disable this if you have NGINX handling your SSL communications | ||
admin_interface_verify_ssl = false # Whether to verify SSL connections | ||
admin_interface_ssl_cert = "/etc/letsencrypt/live/your-domain.com/fullchain.pem" # Only applicable if using SSL; WEBrick will generate ones if these don't exist | ||
admin_interface_ssl_key = "/etc/letsencrypt/live/your-domain.com/privkey.pem" # Only applicable if using SSL; WEBrick will generate ones if these don't exist | ||
admin_interface_session_secret = "" # Used to persist sessions over webserver restarts (if not blank). Use a long, random string (generate with a password manager) |