GOOBFACE
← Back to Config Store

📄 moonraker.conf

FILE: moonraker.conf
LINES: 91
SIZE: 2.12 KB
SYNTAX: INI / Klipper G-Code
1 [server]
2 host: 0.0.0.0
3 port: 7125
4 # The maximum size allowed for a file upload (in MiB). Default 1024 MiB
5 max_upload_size: 1024
6 # Path to klippy Unix Domain Socket
7 klippy_uds_address: ~/printer_data/comms/klippy.sock
8
9 [file_manager]
10 # post processing for object cancel. Not recommended for low resource SBCs such as a Pi Zero. Default False
11 enable_object_processing: False
12
13 [authorization]
14 cors_domains:
15 https://my.mainsail.xyz
16 http://my.mainsail.xyz
17 http://*.local
18 http://*.lan
19 trusted_clients:
20 10.0.0.0/8
21 127.0.0.0/8
22 169.254.0.0/16
23 172.16.0.0/12
24 192.168.0.0/16
25 FE80::/10
26 ::1/128
27
28 # enables partial support of Octoprint API
29 [octoprint_compat]
30
31 # enables moonraker to track and store print history.
32 [history]
33
34 # this enables moonraker announcements for mainsail
35 [announcements]
36 subscriptions:
37 mainsail
38
39 # this enables moonraker's update manager
40 [update_manager]
41 refresh_interval: 168
42 enable_auto_refresh: True
43
44 [update_manager mainsail]
45 type: web
46 channel: stable
47 repo: mainsail-crew/mainsail
48 path: ~/mainsail
49
50 [update_manager mainsail-config]
51 type: git_repo
52 primary_branch: master
53 path: ~/mainsail-config
54 origin: https://github.com/mainsail-crew/mainsail-config.git
55 managed_services: klipper
56
57 ### moonraker-timelapse
58 ### Don't forget to include timelapse.cfg to your printer.cfg
59 ### Uncomment to enable moonraker-timelapse
60
61
62 #[update_manager timelapse]
63 #type: git_repo
64 #primary_branch: main
65 #path: ~/moonraker-timelapse
66 #origin: https://github.com/mainsail-crew/moonraker-timelapse.git
67 #managed_services: klipper moonraker
68
69 #[timelapse]
70 ### Directory where the generated video will be saved
71 #output_path: ~/timelapse/
72 ### Directory where ffmpeg is installed
73 #ffmpeg_binary_path: /usr/bin/ffmpeg
74
75 # Crowsnest update_manager entry
76 [update_manager crowsnest]
77 type: git_repo
78 path: ~/crowsnest
79 origin: https://github.com/mainsail-crew/crowsnest.git
80 managed_services: crowsnest
81 install_script: tools/pkglist.sh
82
83 # Sonar update_manager entry
84 [update_manager sonar]
85 type: git_repo
86 path: ~/sonar
87 origin: https://github.com/mainsail-crew/sonar.git
88 primary_branch: main
89 managed_services: sonar
90 install_script: tools/install.sh
91