diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-05-27 19:27:38 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-05-27 19:27:38 -0700 |
commit | b381ec57346a6d7724b2317c120ce2e6e70edc37 (patch) | |
tree | e2cf66e01a87e438241e5bfac5daf6e7d3046b71 /doc | |
parent | 675aa96f222877a5aa543b8409a2c580cf10d3aa (diff) | |
parent | 11301d51a58d04843ba3056b4c9e92d59ced1334 (diff) | |
download | volse-hubzilla-b381ec57346a6d7724b2317c120ce2e6e70edc37.tar.gz volse-hubzilla-b381ec57346a6d7724b2317c120ce2e6e70edc37.tar.bz2 volse-hubzilla-b381ec57346a6d7724b2317c120ce2e6e70edc37.zip |
Merge branch 'master' of https://github.com/redmatrix/redmatrix
Conflicts:
mod/impel.php
Diffstat (limited to 'doc')
-rw-r--r-- | doc/main.bb | 1 | ||||
-rw-r--r-- | doc/service_classes.bb | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/doc/main.bb b/doc/main.bb index e1131679b..506f228e4 100644 --- a/doc/main.bb +++ b/doc/main.bb @@ -44,6 +44,7 @@ Zot is the great new communicaton protocol invented especially for the $Projectn [zrl=[baseurl]/help/troubleshooting]Troubleshooting Tips[/zrl]
[zrl=[baseurl]/help/hidden_configs]Tweaking $Projectname's Hidden Configurations[/zrl]
[zrl=[baseurl]/help/faq_admins]FAQ For Admins[/zrl]
+[zrl=[baseurl]/help/service_classes]Service Classes[/zrl]
[size=large][b]Technical Documentation[/b][/size]
[zrl=[baseurl]/help/history]$Projectname history[/zrl]
diff --git a/doc/service_classes.bb b/doc/service_classes.bb new file mode 100644 index 000000000..e5d4ecfad --- /dev/null +++ b/doc/service_classes.bb @@ -0,0 +1,37 @@ +[b]Service Classes[/b] + +Service classes allow you to set limits on system resources. A GUI to configure this is currently under development. + +As a temporary measure, the following commandline utilities can be used: + +Usage: + +[code]util/service_class[/code] +list service classes + +[code]util/config system default_service_class firstclass[/code] +set the default service class to 'firstclass' + +[code]util/service_class firstclass[/code] +list the services that are part of 'firstclass' service class + +[code]util/service_class firstclass photo_upload_limit 10000000[/code] +set firstclass total photo disk usage to 10 million bytes + +[code]util/service_class --account=5 firstclass[/code] +set account id 5 to service class 'firstclass' (with confirmation) + +[code]util/service_class --channel=blogchan firstclass[/code] +set the account that owns channel 'blogchan' to service class 'firstclass' (with confirmation) + +[b]current limits[/b] +photo_upload_limit - maximum total bytes for photos +total_items - maximum total toplevel posts +total_pages - maximum comanche pages +total_identities - maximum number of channels owned by account +total_channels - maximum number of connections +total_feeds - maximum number of rss feed connections +attach_upload_limit - maximum file upload storage (bytes) +minimum_feedcheck_minutes - lowest setting allowed for polling rss feeds +chatrooms - maximum chatrooms +chatters_inroom - maximum chatters per room |