| 
									
										
										
										
											2023-03-12 16:00:57 +01:00
										 |  |  | // GoToSocial | 
					
						
							|  |  |  | // Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | // SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | // GNU Affero General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | package config | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-11 13:03:15 +00:00
										 |  |  | import ( | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-26 15:34:10 +02:00
										 |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/language" | 
					
						
							| 
									
										
										
										
											2022-12-11 13:03:15 +00:00
										 |  |  | 	"codeberg.org/gruf/go-bytesize" | 
					
						
							|  |  |  | 	"github.com/coreos/go-oidc/v3/oidc" | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | // Defaults contains a populated Configuration with reasonable defaults. Note that | 
					
						
							|  |  |  | // if you use this, you will still need to set Host, and, if desired, ConfigPath. | 
					
						
							|  |  |  | var Defaults = Configuration{ | 
					
						
							| 
									
										
										
										
											2023-08-21 20:07:55 +02:00
										 |  |  | 	LogLevel:           "info", | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	LogFormat:          "logfmt", | 
					
						
							| 
									
										
										
										
											2023-08-21 20:07:55 +02:00
										 |  |  | 	LogTimestampFormat: "02/01/2006 15:04:05.000", | 
					
						
							|  |  |  | 	LogDbQueries:       false, | 
					
						
							|  |  |  | 	ApplicationName:    "gotosocial", | 
					
						
							|  |  |  | 	LandingPageUser:    "", | 
					
						
							|  |  |  | 	ConfigPath:         "", | 
					
						
							|  |  |  | 	Host:               "", | 
					
						
							|  |  |  | 	AccountDomain:      "", | 
					
						
							|  |  |  | 	Protocol:           "https", | 
					
						
							|  |  |  | 	BindAddress:        "0.0.0.0", | 
					
						
							|  |  |  | 	Port:               8080, | 
					
						
							|  |  |  | 	TrustedProxies:     []string{"127.0.0.1/32", "::1"}, // localhost | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-06-24 12:32:52 +02:00
										 |  |  | 	DbType:                   "", | 
					
						
							|  |  |  | 	DbAddress:                "", | 
					
						
							| 
									
										
										
										
											2023-01-26 15:12:48 +01:00
										 |  |  | 	DbPort:                   5432, | 
					
						
							|  |  |  | 	DbUser:                   "", | 
					
						
							|  |  |  | 	DbPassword:               "", | 
					
						
							|  |  |  | 	DbDatabase:               "gotosocial", | 
					
						
							|  |  |  | 	DbTLSMode:                "disable", | 
					
						
							|  |  |  | 	DbTLSCACert:              "", | 
					
						
							|  |  |  | 	DbMaxOpenConnsMultiplier: 8, | 
					
						
							|  |  |  | 	DbSqliteJournalMode:      "WAL", | 
					
						
							|  |  |  | 	DbSqliteSynchronous:      "NORMAL", | 
					
						
							|  |  |  | 	DbSqliteCacheSize:        8 * bytesize.MiB, | 
					
						
							| 
									
										
											  
											
												[performance] refactoring + add fave / follow / request / visibility caching (#1607)
* refactor visibility checking, add caching for visibility
* invalidate visibility cache items on account / status deletes
* fix requester ID passed to visibility cache nil ptr
* de-interface caches, fix home / public timeline caching + visibility
* finish adding code comments for visibility filter
* fix angry goconst linter warnings
* actually finish adding filter visibility code comments for timeline functions
* move home timeline status author check to after visibility
* remove now-unused code
* add more code comments
* add TODO code comment, update printed cache start names
* update printed cache names on stop
* start adding separate follow(request) delete db functions, add specific visibility cache tests
* add relationship type caching
* fix getting local account follows / followed-bys, other small codebase improvements
* simplify invalidation using cache hooks, add more GetAccountBy___() functions
* fix boosting to return 404 if not boostable but no error (to not leak status ID)
* remove dead code
* improved placement of cache invalidation
* update license headers
* add example follow, follow-request config entries
* add example visibility cache configuration to config file
* use specific PutFollowRequest() instead of just Put()
* add tests for all GetAccountBy()
* add GetBlockBy() tests
* update block to check primitive fields
* update and finish adding Get{Account,Block,Follow,FollowRequest}By() tests
* fix copy-pasted code
* update envparsing test
* whitespace
* fix bun struct tag
* add license header to gtscontext
* fix old license header
* improved error creation to not use fmt.Errorf() when not needed
* fix various rebase conflicts, fix account test
* remove commented-out code, fix-up mention caching
* fix mention select bun statement
* ensure mention target account populated, pass in context to customrenderer logging
* remove more uncommented code, fix typeutil test
* add statusfave database model caching
* add status fave cache configuration
* add status fave cache example config
* woops, catch missed error. nice catch linter!
* add back testrig panic on nil db
* update example configuration to match defaults, slight tweak to cache configuration defaults
* update envparsing test with new defaults
* fetch followingget to use the follow target account
* use accounnt.IsLocal() instead of empty domain check
* use constants for the cache visibility type check
* use bun.In() for notification type restriction in db query
* include replies when fetching PublicTimeline() (to account for single-author threads in Visibility{}.StatusPublicTimelineable())
* use bun query building for nested select statements to ensure working with postgres
* update public timeline future status checks to match visibility filter
* same as previous, for home timeline
* update public timeline tests to dynamically check for appropriate statuses
* migrate accounts to allow unique constraint on public_key
* provide minimal account with publicKey
---------
Signed-off-by: kim <grufwub@gmail.com>
Co-authored-by: tsmethurst <tobi.smethurst@protonmail.com>
											
										 
											2023-03-28 14:03:14 +01:00
										 |  |  | 	DbSqliteBusyTimeout:      time.Minute * 30, | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	WebTemplateBaseDir: "./web/template/", | 
					
						
							|  |  |  | 	WebAssetBaseDir:    "./web/assets/", | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-08 11:29:40 +01:00
										 |  |  | 	InstanceFederationMode:            InstanceFederationModeDefault, | 
					
						
							|  |  |  | 	InstanceFederationSpamFilter:      false, | 
					
						
							|  |  |  | 	InstanceExposePeers:               false, | 
					
						
							| 
									
										
										
										
											2025-05-20 11:47:40 +02:00
										 |  |  | 	InstanceExposeBlocklist:           false, | 
					
						
							|  |  |  | 	InstanceExposeBlocklistWeb:        false, | 
					
						
							| 
									
										
										
										
											2025-06-03 23:30:42 +02:00
										 |  |  | 	InstanceExposeCustomEmojis:        false, | 
					
						
							| 
									
										
										
										
											2025-01-08 11:29:40 +01:00
										 |  |  | 	InstanceDeliverToSharedInboxes:    true, | 
					
						
							|  |  |  | 	InstanceLanguages:                 make(language.Languages, 0), | 
					
						
							|  |  |  | 	InstanceSubscriptionsProcessFrom:  "23:00",        // 11pm, | 
					
						
							|  |  |  | 	InstanceSubscriptionsProcessEvery: 24 * time.Hour, // 1/day. | 
					
						
							| 
									
										
										
										
											2025-02-12 09:49:33 -08:00
										 |  |  | 	InstanceAllowBackdatingStatuses:   true, | 
					
						
							| 
									
										
										
										
											2025-09-16 15:59:53 +02:00
										 |  |  | 	InstanceAllowEmptyUserAgents:      false, | 
					
						
							| 
									
										
										
										
											2022-06-23 16:54:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-10 15:46:36 +01:00
										 |  |  | 	AccountsRegistrationOpen:         false, | 
					
						
							|  |  |  | 	AccountsReasonRequired:           true, | 
					
						
							|  |  |  | 	AccountsRegistrationDailyLimit:   10, | 
					
						
							|  |  |  | 	AccountsRegistrationBacklogLimit: 20, | 
					
						
							|  |  |  | 	AccountsAllowCustomCSS:           false, | 
					
						
							|  |  |  | 	AccountsCustomCSSLength:          10000, | 
					
						
							| 
									
										
											  
											
												[feature] Configurable max profile fields (#4175)
# Description
> If this is a code change, please include a summary of what you've coded, and link to the issue(s) it closes/implements.
>
> If this is a documentation change, please briefly describe what you've changed and why.
Profile fields, right? So I made them a configurable amount and show them on the instance features. Closes #1876
All changes I did are described in the commits. I tried to cover as much as possible, but I don't know this codebase to know what I've missed. I have tested it manually and it works (settings page, `/api/v1/instances`, server-side validation).
Not done:
- An "Add profile fields" button, so that instances with a high profile fields count (e.g. 100) aren't an issue when trying to skip the profile fields (in some form, accessibility)
- Updating the swagger docs that specify a specific amount of profile fields for the updating endpoint (not sure how to proceed with that)
- Unchecked checklist items
## Checklist
Please put an x inside each checkbox to indicate that you've read and followed it: `[ ]` -> `[x]`
If this is a documentation change, only the first checkbox must be filled (you can delete the others if you want).
- [X] I/we have read the [GoToSocial contribution guidelines](https://codeberg.org/superseriousbusiness/gotosocial/src/branch/main/CONTRIBUTING.md).
- [x] I/we have discussed the proposed changes already, either in an issue on the repository, or in the Matrix chat.
- [X] I/we have not leveraged AI to create the proposed changes.
- [x] I/we have performed a self-review of added code.
- [X] I/we have written code that is legible and maintainable by others.
- [ ] I/we have commented the added code, particularly in hard-to-understand areas.
- [X] I/we have made any necessary changes to documentation.
- [ ] I/we have added tests that cover new code.
- [X] I/we have run tests and they pass locally with the changes.
- [x] I/we have run `go fmt ./...` and `golangci-lint run`.
Notes about checklist:
- ["Approval" to work on this reference](https://matrix.to/#/!mlPctfMHjyopbOnliM:superseriousbusiness.org/$P0Z1Qmny6GNIgxhre69gll8KSD690HC8nVvNpXmu3nU?via=superseriousbusiness.org&via=matrix.org&via=tchncs.de)
- `golangci-lint run` output ignored due to complaining about ffmpeg and some other code I didn't touch
Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4175
Reviewed-by: kim <gruf@noreply.codeberg.org>
Co-authored-by: Jackson <jackson@jacksonchen666.com>
Co-committed-by: Jackson <jackson@jacksonchen666.com>
											
										 
											2025-05-14 13:25:21 +00:00
										 |  |  | 	AccountsMaxProfileFields:         6, | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-06-10 15:43:31 +02:00
										 |  |  | 	Media: MediaConfiguration{ | 
					
						
							|  |  |  | 		DescriptionMinChars: 0, | 
					
						
							|  |  |  | 		DescriptionMaxChars: 1500, | 
					
						
							|  |  |  | 		RemoteCacheDays:     7, | 
					
						
							|  |  |  | 		LocalMaxSize:        40 * bytesize.MiB, | 
					
						
							|  |  |  | 		RemoteMaxSize:       40 * bytesize.MiB, | 
					
						
							|  |  |  | 		EmojiLocalMaxSize:   50 * bytesize.KiB, | 
					
						
							|  |  |  | 		EmojiRemoteMaxSize:  100 * bytesize.KiB, | 
					
						
							|  |  |  | 		CleanupFrom:         "00:00",        // Midnight. | 
					
						
							|  |  |  | 		CleanupEvery:        24 * time.Hour, // 1/day. | 
					
						
							|  |  |  | 		FfmpegPoolSize:      1, | 
					
						
							|  |  |  | 		ThumbMaxPixels:      512, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-06 09:54:50 +00:00
										 |  |  | 	StorageBackend:        "local", | 
					
						
							|  |  |  | 	StorageLocalBasePath:  "/gotosocial/storage", | 
					
						
							|  |  |  | 	StorageS3UseSSL:       true, | 
					
						
							|  |  |  | 	StorageS3Proxy:        false, | 
					
						
							|  |  |  | 	StorageS3RedirectURL:  "", | 
					
						
							|  |  |  | 	StorageS3BucketLookup: "auto", | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	StatusesMaxChars:           5000, | 
					
						
							|  |  |  | 	StatusesPollMaxOptions:     6, | 
					
						
							|  |  |  | 	StatusesPollOptionMaxChars: 50, | 
					
						
							|  |  |  | 	StatusesMediaMaxFiles:      6, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-12 14:05:15 +02:00
										 |  |  | 	ScheduledStatusesMaxTotal: 300, | 
					
						
							|  |  |  | 	ScheduledStatusesMaxDaily: 25, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-30 14:57:33 +01:00
										 |  |  | 	LetsEncryptEnabled:      false, | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	LetsEncryptPort:         80, | 
					
						
							|  |  |  | 	LetsEncryptCertDir:      "/gotosocial/storage/certs", | 
					
						
							|  |  |  | 	LetsEncryptEmailAddress: "", | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-04 18:24:02 +01:00
										 |  |  | 	TLSCertificateChain: "", | 
					
						
							|  |  |  | 	TLSCertificateKey:   "", | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	OIDCEnabled:          false, | 
					
						
							|  |  |  | 	OIDCIdpName:          "", | 
					
						
							|  |  |  | 	OIDCSkipVerification: false, | 
					
						
							|  |  |  | 	OIDCIssuer:           "", | 
					
						
							|  |  |  | 	OIDCClientID:         "", | 
					
						
							|  |  |  | 	OIDCClientSecret:     "", | 
					
						
							|  |  |  | 	OIDCScopes:           []string{oidc.ScopeOpenID, "profile", "email", "groups"}, | 
					
						
							| 
									
										
										
										
											2022-12-06 14:15:56 +01:00
										 |  |  | 	OIDCLinkExisting:     false, | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-19 13:11:46 +01:00
										 |  |  | 	SMTPHost:               "", | 
					
						
							|  |  |  | 	SMTPPort:               0, | 
					
						
							|  |  |  | 	SMTPUsername:           "", | 
					
						
							|  |  |  | 	SMTPPassword:           "", | 
					
						
							| 
									
										
										
										
											2023-07-12 10:28:41 +02:00
										 |  |  | 	SMTPFrom:               "", | 
					
						
							| 
									
										
										
										
											2023-03-19 13:11:46 +01:00
										 |  |  | 	SMTPDiscloseRecipients: false, | 
					
						
							| 
									
										
										
										
											2021-12-12 18:00:20 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-05 16:22:45 +00:00
										 |  |  | 	TracingEnabled: false, | 
					
						
							|  |  |  | 	MetricsEnabled: false, | 
					
						
							| 
									
										
										
										
											2023-11-20 17:43:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 18:00:20 +01:00
										 |  |  | 	SyslogEnabled:  false, | 
					
						
							|  |  |  | 	SyslogProtocol: "udp", | 
					
						
							|  |  |  | 	SyslogAddress:  "localhost:514", | 
					
						
							| 
									
										
										
										
											2022-06-03 15:40:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-05-06 15:51:45 +00:00
										 |  |  | 	Advanced: AdvancedConfig{ | 
					
						
							| 
									
										
										
										
											2025-05-07 11:59:39 +00:00
										 |  |  | 		SenderMultiplier: 2, // 2 senders per CPU | 
					
						
							|  |  |  | 		CSPExtraURIs:     []string{}, | 
					
						
							|  |  |  | 		HeaderFilterMode: RequestHeaderFilterModeDisabled, | 
					
						
							|  |  |  | 		CookiesSamesite:  "lax", | 
					
						
							| 
									
										
										
										
											2025-05-06 15:51:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		RateLimit: RateLimitConfig{ | 
					
						
							|  |  |  | 			Requests:   300, // 1 per second per 5 minutes | 
					
						
							|  |  |  | 			Exceptions: IPPrefixes{}, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Throttling: ThrottlingConfig{ | 
					
						
							|  |  |  | 			Multiplier: 8, // 8 open requests per CPU | 
					
						
							|  |  |  | 			RetryAfter: 30 * time.Second, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2025-05-07 11:59:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		ScraperDeterrence: ScraperDeterrenceConfig{ | 
					
						
							|  |  |  | 			Enabled:    false, | 
					
						
							| 
									
										
										
										
											2025-05-26 11:57:50 +02:00
										 |  |  | 			Difficulty: 100000, | 
					
						
							| 
									
										
										
										
											2025-05-07 11:59:39 +00:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2025-05-06 15:51:45 +00:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2022-12-11 13:03:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Cache: CacheConfiguration{ | 
					
						
							| 
									
										
										
										
											2023-08-03 10:34:35 +01:00
										 |  |  | 		// Rough memory target that the total | 
					
						
							|  |  |  | 		// size of all State.Caches will attempt | 
					
						
							|  |  |  | 		// to remain with. Emphasis on *rough*. | 
					
						
							| 
									
										
										
										
											2023-08-14 17:08:19 +01:00
										 |  |  | 		MemoryTarget: 100 * bytesize.MiB, | 
					
						
							| 
									
										
										
										
											2023-08-03 10:34:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// These ratios signal what percentage | 
					
						
							|  |  |  | 		// of the available cache target memory | 
					
						
							|  |  |  | 		// is allocated to each object type's | 
					
						
							|  |  |  | 		// cache. | 
					
						
							|  |  |  | 		// | 
					
						
							|  |  |  | 		// These are weighted by a totally | 
					
						
							|  |  |  | 		// assorted mixture of priority, and | 
					
						
							|  |  |  | 		// manual twiddling to get the generated | 
					
						
							|  |  |  | 		// cache capacity ratios within normal | 
					
						
							|  |  |  | 		// amounts dependent size of the models. | 
					
						
							|  |  |  | 		// | 
					
						
							|  |  |  | 		// when TODO items in the size.go source | 
					
						
							|  |  |  | 		// file have been addressed, these should | 
					
						
							|  |  |  | 		// be able to make some more sense :D | 
					
						
							| 
									
										
										
										
											2025-01-05 13:20:33 +01:00
										 |  |  | 		AccountMemRatio:                       5, | 
					
						
							|  |  |  | 		AccountNoteMemRatio:                   1, | 
					
						
							|  |  |  | 		AccountSettingsMemRatio:               0.1, | 
					
						
							|  |  |  | 		AccountStatsMemRatio:                  2, | 
					
						
							|  |  |  | 		ApplicationMemRatio:                   0.1, | 
					
						
							|  |  |  | 		BlockMemRatio:                         2, | 
					
						
							|  |  |  | 		BlockIDsMemRatio:                      3, | 
					
						
							|  |  |  | 		BoostOfIDsMemRatio:                    3, | 
					
						
							|  |  |  | 		ClientMemRatio:                        0.1, | 
					
						
							|  |  |  | 		ConversationMemRatio:                  1, | 
					
						
							|  |  |  | 		ConversationLastStatusIDsMemRatio:     2, | 
					
						
							|  |  |  | 		DomainPermissionDraftMemRation:        0.5, | 
					
						
							|  |  |  | 		DomainPermissionSubscriptionMemRation: 0.5, | 
					
						
							|  |  |  | 		EmojiMemRatio:                         3, | 
					
						
							|  |  |  | 		EmojiCategoryMemRatio:                 0.1, | 
					
						
							|  |  |  | 		FilterMemRatio:                        0.5, | 
					
						
							| 
									
										
										
										
											2025-06-24 17:24:34 +02:00
										 |  |  | 		FilterIDsMemRatio:                     2, | 
					
						
							| 
									
										
										
										
											2025-01-05 13:20:33 +01:00
										 |  |  | 		FilterKeywordMemRatio:                 0.5, | 
					
						
							|  |  |  | 		FilterStatusMemRatio:                  0.5, | 
					
						
							|  |  |  | 		FollowMemRatio:                        2, | 
					
						
							|  |  |  | 		FollowIDsMemRatio:                     4, | 
					
						
							|  |  |  | 		FollowRequestMemRatio:                 2, | 
					
						
							|  |  |  | 		FollowRequestIDsMemRatio:              2, | 
					
						
							|  |  |  | 		FollowingTagIDsMemRatio:               2, | 
					
						
							|  |  |  | 		InReplyToIDsMemRatio:                  3, | 
					
						
							|  |  |  | 		InstanceMemRatio:                      1, | 
					
						
							|  |  |  | 		InteractionRequestMemRatio:            1, | 
					
						
							|  |  |  | 		ListMemRatio:                          1, | 
					
						
							|  |  |  | 		ListIDsMemRatio:                       2, | 
					
						
							|  |  |  | 		ListedIDsMemRatio:                     2, | 
					
						
							|  |  |  | 		MarkerMemRatio:                        0.5, | 
					
						
							|  |  |  | 		MediaMemRatio:                         4, | 
					
						
							|  |  |  | 		MentionMemRatio:                       2, | 
					
						
							|  |  |  | 		MoveMemRatio:                          0.1, | 
					
						
							|  |  |  | 		NotificationMemRatio:                  2, | 
					
						
							|  |  |  | 		PollMemRatio:                          1, | 
					
						
							|  |  |  | 		PollVoteMemRatio:                      2, | 
					
						
							|  |  |  | 		PollVoteIDsMemRatio:                   2, | 
					
						
							|  |  |  | 		ReportMemRatio:                        1, | 
					
						
							| 
									
										
										
										
											2025-08-12 14:05:15 +02:00
										 |  |  | 		ScheduledStatusMemRatio:               4, | 
					
						
							| 
									
										
										
										
											2025-01-05 13:20:33 +01:00
										 |  |  | 		SinBinStatusMemRatio:                  0.5, | 
					
						
							|  |  |  | 		StatusMemRatio:                        5, | 
					
						
							|  |  |  | 		StatusBookmarkMemRatio:                0.5, | 
					
						
							|  |  |  | 		StatusBookmarkIDsMemRatio:             2, | 
					
						
							|  |  |  | 		StatusEditMemRatio:                    2, | 
					
						
							|  |  |  | 		StatusFaveMemRatio:                    2, | 
					
						
							|  |  |  | 		StatusFaveIDsMemRatio:                 3, | 
					
						
							|  |  |  | 		TagMemRatio:                           2, | 
					
						
							|  |  |  | 		ThreadMuteMemRatio:                    0.2, | 
					
						
							|  |  |  | 		TokenMemRatio:                         0.75, | 
					
						
							|  |  |  | 		TombstoneMemRatio:                     0.5, | 
					
						
							|  |  |  | 		UserMemRatio:                          0.25, | 
					
						
							|  |  |  | 		UserMuteMemRatio:                      2, | 
					
						
							|  |  |  | 		UserMuteIDsMemRatio:                   3, | 
					
						
							|  |  |  | 		WebfingerMemRatio:                     0.1, | 
					
						
							| 
									
										
										
										
											2025-01-23 16:47:30 -08:00
										 |  |  | 		WebPushSubscriptionMemRatio:           1, | 
					
						
							|  |  |  | 		WebPushSubscriptionIDsMemRatio:        1, | 
					
						
							| 
									
										
										
										
											2025-05-31 17:30:57 +02:00
										 |  |  | 		MutesMemRatio:                         2, | 
					
						
							| 
									
										
										
										
											2025-07-01 16:00:04 +02:00
										 |  |  | 		StatusFilterMemRatio:                  7, | 
					
						
							|  |  |  | 		VisibilityMemRatio:                    2, | 
					
						
							| 
									
										
										
										
											2022-12-11 13:03:15 +00:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2023-02-11 12:48:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-07 16:17:39 +02:00
										 |  |  | 	HTTPClient: HTTPClientConfiguration{ | 
					
						
							| 
									
										
										
										
											2023-08-01 19:50:17 +02:00
										 |  |  | 		AllowIPs:              make([]string, 0), | 
					
						
							|  |  |  | 		BlockIPs:              make([]string, 0), | 
					
						
							| 
									
										
										
										
											2024-08-19 12:56:43 +00:00
										 |  |  | 		Timeout:               30 * time.Second, | 
					
						
							| 
									
										
										
										
											2023-08-01 19:50:17 +02:00
										 |  |  | 		TLSInsecureSkipVerify: false, | 
					
						
							| 
									
										
										
										
											2023-07-07 16:17:39 +02:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-11 12:48:38 +01:00
										 |  |  | 	AdminMediaPruneDryRun: true, | 
					
						
							| 
									
										
										
										
											2023-02-17 12:02:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	RequestIDHeader: "X-Request-Id", | 
					
						
							| 
									
										
										
										
											2023-05-21 17:12:47 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	LogClientIP: true, | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | } |