File size: 16,678 Bytes
4c581ad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
owner:
	#How many directories deep a user's custom OutPath can be.
	#Default is 5.
	#This is just a minor protection to avoid filesystem corruption. Higher values are perfectly fine in most cases.
	#The actual limit applied to a user is whatever the highest value of all their roles is.
	MaxOutPathDepth: 5
	#What models are allowed, as a list of prefixes.
	#For example 'sdxl/' allows only models in the SDXL folder.
	#Or, 'sdxl/,flux/' allows models in the SDXL or Flux folders.
	#If empty, no whitelist logic is applied.
	#Note that blacklist is 'more powerful' than whitelist and overrides it.
	#This stacks between roles, roles can add whitelist entries together.
	ModelWhitelist:
	#What models are forbidden, as a list of prefixes.
	#For example 'sdxl/' forbids models in the SDXL folder.
	#Or, 'sdxl/,flux/' forbids models in the SDXL or Flux folders.
	#If empty, no blacklist logic is applied.
	#Note that blacklist is 'more powerful' than whitelist and overrides it.
	#This stacks between roles, roles can add blacklist entries together.
	ModelBlacklist:
	#Generic permission flags. '*' means all (admin).
	#Default is all.
	PermissionFlags:
	- *
	- shutdown
	- edit_wildcards
	- comfy_backend_generate
	- gridgen_read_grids
	- reset_metadata
	- read_user_settings
	- toggle_backends
	- add_remove_backends
	- read_server_info_panels
	- comfy_direct_calls
	- user_tab
	- param_backend_type
	- fundamental_generate_tab_access
	- comfy_dynamic_custom_workflows
	- edit_user_settings
	- extra_loras
	- restart_backends
	- pickle2safetensors
	- simple_tab
	- user_delete_image
	- edit_server_settings
	- local_image_folder
	- view_server_tab
	- control_mem_clean
	- gridgen_generate_grids
	- use_tokenizer
	- interrupt_others
	- restart
	- fundamental
	- comfy_stored_custom_workflows
	- view_image_history
	- view_others_outputs
	- edit_backends
	- manage_extensions
	- comfy_read_workflows
	- user_star_images
	- download_models
	- server_debug_message
	- fundamental_model_access
	- delete_models
	- basic_text_generation
	- admin_debug
	- gridgen_save_grids
	- manage_presets
	- edit_params
	- automated_control
	- model_params
	- edit_model_metadata
	- param_controlnet
	- param_backend_id
	- utilities_tab
	- create_tensorrt
	- view_logs
	- basic_image_generation
	- param_video
	- comfy_edit_workflows
	- configure_roles
	- manage_users
	- load_models_now
	- install
	- read_server_settings
	- view_backends_list
	- install_features
	- control_model_refresh
	- imagebatcher_use_image_batcher
	#How many images this user can have actively generating at once.
	#Default is 32.
	#This is naturally sub-limited by the number of available backends.
	#This is a protection for many-backend servers, to guarantee one user cannot steal all backends at once.
	#You can set this to a very low value if you have few backends but many users.
	#Set this to a very high value if you have many backends and no concern for their distribution.
	#The actual limit applied to a user is whatever the highest value of all their roles is.
	MaxT2ISimultaneous: 32
	#Whether the '.' symbol can be used in OutPath - if enabled, users may cause file system issues or perform folder escapes.
	AllowUnsafeOutpaths: false
	#Human readable display name for this role.
	Name: Owner
	#Human-readable description text about this role.
	#This is for admin reference when picking roles.
	#Probably describe here when/why a user should receive this role, and a short bit about what it unlocks.
	Description: (Auto Generated Role, cannot delete). The owner of the server, local user when account system is disabled. Generally should have all permissions ever always.
admin:
	#How many directories deep a user's custom OutPath can be.
	#Default is 5.
	#This is just a minor protection to avoid filesystem corruption. Higher values are perfectly fine in most cases.
	#The actual limit applied to a user is whatever the highest value of all their roles is.
	MaxOutPathDepth: 5
	#What models are allowed, as a list of prefixes.
	#For example 'sdxl/' allows only models in the SDXL folder.
	#Or, 'sdxl/,flux/' allows models in the SDXL or Flux folders.
	#If empty, no whitelist logic is applied.
	#Note that blacklist is 'more powerful' than whitelist and overrides it.
	#This stacks between roles, roles can add whitelist entries together.
	ModelWhitelist:
	#What models are forbidden, as a list of prefixes.
	#For example 'sdxl/' forbids models in the SDXL folder.
	#Or, 'sdxl/,flux/' forbids models in the SDXL or Flux folders.
	#If empty, no blacklist logic is applied.
	#Note that blacklist is 'more powerful' than whitelist and overrides it.
	#This stacks between roles, roles can add blacklist entries together.
	ModelBlacklist:
	#Generic permission flags. '*' means all (admin).
	#Default is all.
	PermissionFlags:
	- edit_wildcards
	- comfy_backend_generate
	- gridgen_read_grids
	- reset_metadata
	- read_user_settings
	- toggle_backends
	- add_remove_backends
	- read_server_info_panels
	- comfy_direct_calls
	- user_tab
	- param_backend_type
	- fundamental_generate_tab_access
	- comfy_dynamic_custom_workflows
	- edit_user_settings
	- extra_loras
	- restart_backends
	- pickle2safetensors
	- simple_tab
	- user_delete_image
	- edit_server_settings
	- view_server_tab
	- control_mem_clean
	- gridgen_generate_grids
	- use_tokenizer
	- interrupt_others
	- restart
	- fundamental
	- comfy_stored_custom_workflows
	- view_image_history
	- view_others_outputs
	- edit_backends
	- manage_extensions
	- comfy_read_workflows
	- user_star_images
	- download_models
	- fundamental_model_access
	- delete_models
	- basic_text_generation
	- admin_debug
	- gridgen_save_grids
	- manage_presets
	- edit_params
	- model_params
	- edit_model_metadata
	- param_controlnet
	- param_backend_id
	- utilities_tab
	- create_tensorrt
	- view_logs
	- basic_image_generation
	- param_video
	- comfy_edit_workflows
	- load_models_now
	- read_server_settings
	- view_backends_list
	- install_features
	- control_model_refresh
	- imagebatcher_use_image_batcher
	#How many images this user can have actively generating at once.
	#Default is 32.
	#This is naturally sub-limited by the number of available backends.
	#This is a protection for many-backend servers, to guarantee one user cannot steal all backends at once.
	#You can set this to a very low value if you have few backends but many users.
	#Set this to a very high value if you have many backends and no concern for their distribution.
	#The actual limit applied to a user is whatever the highest value of all their roles is.
	MaxT2ISimultaneous: 32
	#Whether the '.' symbol can be used in OutPath - if enabled, users may cause file system issues or perform folder escapes.
	AllowUnsafeOutpaths: false
	#Human readable display name for this role.
	Name: Admin
	#Human-readable description text about this role.
	#This is for admin reference when picking roles.
	#Probably describe here when/why a user should receive this role, and a short bit about what it unlocks.
	Description: (Auto Generated Role, cannot delete). An administrator of the server, has near-total control.
poweruser:
	#How many directories deep a user's custom OutPath can be.
	#Default is 5.
	#This is just a minor protection to avoid filesystem corruption. Higher values are perfectly fine in most cases.
	#The actual limit applied to a user is whatever the highest value of all their roles is.
	MaxOutPathDepth: 5
	#What models are allowed, as a list of prefixes.
	#For example 'sdxl/' allows only models in the SDXL folder.
	#Or, 'sdxl/,flux/' allows models in the SDXL or Flux folders.
	#If empty, no whitelist logic is applied.
	#Note that blacklist is 'more powerful' than whitelist and overrides it.
	#This stacks between roles, roles can add whitelist entries together.
	ModelWhitelist:
	#What models are forbidden, as a list of prefixes.
	#For example 'sdxl/' forbids models in the SDXL folder.
	#Or, 'sdxl/,flux/' forbids models in the SDXL or Flux folders.
	#If empty, no blacklist logic is applied.
	#Note that blacklist is 'more powerful' than whitelist and overrides it.
	#This stacks between roles, roles can add blacklist entries together.
	ModelBlacklist:
	#Generic permission flags. '*' means all (admin).
	#Default is all.
	PermissionFlags:
	- edit_wildcards
	- comfy_backend_generate
	- gridgen_read_grids
	- reset_metadata
	- read_user_settings
	- comfy_direct_calls
	- user_tab
	- param_backend_type
	- fundamental_generate_tab_access
	- comfy_dynamic_custom_workflows
	- edit_user_settings
	- extra_loras
	- restart_backends
	- pickle2safetensors
	- simple_tab
	- user_delete_image
	- view_server_tab
	- control_mem_clean
	- gridgen_generate_grids
	- use_tokenizer
	- fundamental
	- comfy_stored_custom_workflows
	- view_image_history
	- comfy_read_workflows
	- user_star_images
	- download_models
	- fundamental_model_access
	- delete_models
	- basic_text_generation
	- gridgen_save_grids
	- manage_presets
	- edit_params
	- model_params
	- edit_model_metadata
	- param_controlnet
	- param_backend_id
	- utilities_tab
	- create_tensorrt
	- basic_image_generation
	- param_video
	- comfy_edit_workflows
	- load_models_now
	- view_backends_list
	- install_features
	- control_model_refresh
	#How many images this user can have actively generating at once.
	#Default is 32.
	#This is naturally sub-limited by the number of available backends.
	#This is a protection for many-backend servers, to guarantee one user cannot steal all backends at once.
	#You can set this to a very low value if you have few backends but many users.
	#Set this to a very high value if you have many backends and no concern for their distribution.
	#The actual limit applied to a user is whatever the highest value of all their roles is.
	MaxT2ISimultaneous: 32
	#Whether the '.' symbol can be used in OutPath - if enabled, users may cause file system issues or perform folder escapes.
	AllowUnsafeOutpaths: false
	#Human readable display name for this role.
	Name: PowerUser
	#Human-readable description text about this role.
	#This is for admin reference when picking roles.
	#Probably describe here when/why a user should receive this role, and a short bit about what it unlocks.
	Description: (Auto Generated Role, cannot delete). A very advanced, and trusted, user. Has access to things that could be dangerous or can be maliciously abused.
user:
	#How many directories deep a user's custom OutPath can be.
	#Default is 5.
	#This is just a minor protection to avoid filesystem corruption. Higher values are perfectly fine in most cases.
	#The actual limit applied to a user is whatever the highest value of all their roles is.
	MaxOutPathDepth: 5
	#What models are allowed, as a list of prefixes.
	#For example 'sdxl/' allows only models in the SDXL folder.
	#Or, 'sdxl/,flux/' allows models in the SDXL or Flux folders.
	#If empty, no whitelist logic is applied.
	#Note that blacklist is 'more powerful' than whitelist and overrides it.
	#This stacks between roles, roles can add whitelist entries together.
	ModelWhitelist:
	#What models are forbidden, as a list of prefixes.
	#For example 'sdxl/' forbids models in the SDXL folder.
	#Or, 'sdxl/,flux/' forbids models in the SDXL or Flux folders.
	#If empty, no blacklist logic is applied.
	#Note that blacklist is 'more powerful' than whitelist and overrides it.
	#This stacks between roles, roles can add blacklist entries together.
	ModelBlacklist:
	#Generic permission flags. '*' means all (admin).
	#Default is all.
	PermissionFlags:
	- gridgen_read_grids
	- read_user_settings
	- user_tab
	- fundamental_generate_tab_access
	- edit_user_settings
	- simple_tab
	- user_delete_image
	- gridgen_generate_grids
	- use_tokenizer
	- fundamental
	- view_image_history
	- user_star_images
	- fundamental_model_access
	- basic_text_generation
	- gridgen_save_grids
	- manage_presets
	- edit_params
	- model_params
	- param_controlnet
	- utilities_tab
	- basic_image_generation
	- param_video
	#How many images this user can have actively generating at once.
	#Default is 32.
	#This is naturally sub-limited by the number of available backends.
	#This is a protection for many-backend servers, to guarantee one user cannot steal all backends at once.
	#You can set this to a very low value if you have few backends but many users.
	#Set this to a very high value if you have many backends and no concern for their distribution.
	#The actual limit applied to a user is whatever the highest value of all their roles is.
	MaxT2ISimultaneous: 32
	#Whether the '.' symbol can be used in OutPath - if enabled, users may cause file system issues or perform folder escapes.
	AllowUnsafeOutpaths: false
	#Human readable display name for this role.
	Name: User
	#Human-readable description text about this role.
	#This is for admin reference when picking roles.
	#Probably describe here when/why a user should receive this role, and a short bit about what it unlocks.
	Description: (Auto Generated Role, cannot delete). A general user. The default role for valid accounts.
guest:
	#How many directories deep a user's custom OutPath can be.
	#Default is 5.
	#This is just a minor protection to avoid filesystem corruption. Higher values are perfectly fine in most cases.
	#The actual limit applied to a user is whatever the highest value of all their roles is.
	MaxOutPathDepth: 5
	#What models are allowed, as a list of prefixes.
	#For example 'sdxl/' allows only models in the SDXL folder.
	#Or, 'sdxl/,flux/' allows models in the SDXL or Flux folders.
	#If empty, no whitelist logic is applied.
	#Note that blacklist is 'more powerful' than whitelist and overrides it.
	#This stacks between roles, roles can add whitelist entries together.
	ModelWhitelist:
	#What models are forbidden, as a list of prefixes.
	#For example 'sdxl/' forbids models in the SDXL folder.
	#Or, 'sdxl/,flux/' forbids models in the SDXL or Flux folders.
	#If empty, no blacklist logic is applied.
	#Note that blacklist is 'more powerful' than whitelist and overrides it.
	#This stacks between roles, roles can add blacklist entries together.
	ModelBlacklist:
	#Generic permission flags. '*' means all (admin).
	#Default is all.
	PermissionFlags:
	- read_user_settings
	- fundamental_generate_tab_access
	- use_tokenizer
	- fundamental
	- fundamental_model_access
	#How many images this user can have actively generating at once.
	#Default is 32.
	#This is naturally sub-limited by the number of available backends.
	#This is a protection for many-backend servers, to guarantee one user cannot steal all backends at once.
	#You can set this to a very low value if you have few backends but many users.
	#Set this to a very high value if you have many backends and no concern for their distribution.
	#The actual limit applied to a user is whatever the highest value of all their roles is.
	MaxT2ISimultaneous: 32
	#Whether the '.' symbol can be used in OutPath - if enabled, users may cause file system issues or perform folder escapes.
	AllowUnsafeOutpaths: false
	#Human readable display name for this role.
	Name: Guest
	#Human-readable description text about this role.
	#This is for admin reference when picking roles.
	#Probably describe here when/why a user should receive this role, and a short bit about what it unlocks.
	Description: (Auto Generated Role, cannot delete). An unregistered or unverified guest account. Only when public unverified access is enabled.
___$tracked:
- shutdown
- edit_wildcards
- comfy_backend_generate
- gridgen_read_grids
- reset_metadata
- read_user_settings
- toggle_backends
- add_remove_backends
- read_server_info_panels
- comfy_direct_calls
- user_tab
- param_backend_type
- fundamental_generate_tab_access
- comfy_dynamic_custom_workflows
- edit_user_settings
- extra_loras
- restart_backends
- pickle2safetensors
- simple_tab
- user_delete_image
- edit_server_settings
- local_image_folder
- view_server_tab
- control_mem_clean
- gridgen_generate_grids
- use_tokenizer
- interrupt_others
- restart
- fundamental
- comfy_stored_custom_workflows
- view_image_history
- view_others_outputs
- edit_backends
- manage_extensions
- comfy_read_workflows
- user_star_images
- download_models
- server_debug_message
- fundamental_model_access
- delete_models
- basic_text_generation
- admin_debug
- gridgen_save_grids
- manage_presets
- edit_params
- automated_control
- model_params
- edit_model_metadata
- param_controlnet
- param_backend_id
- utilities_tab
- create_tensorrt
- view_logs
- basic_image_generation
- param_video
- comfy_edit_workflows
- configure_roles
- manage_users
- *
- load_models_now
- install
- read_server_settings
- view_backends_list
- install_features
- control_model_refresh
- imagebatcher_use_image_batcher