From 1a9550e6aef041e9f535847a1d33dfe21cd39ace Mon Sep 17 00:00:00 2001 From: supersonicwisd1 <supersonicwisd1> Date: Tue, 19 Nov 2024 00:07:59 +0100 Subject: [PATCH] removed the unneeded config folder from examples Signed-off-by: supersonicwisd1 <supersonicwisd1> --- examples/configuration/config.yaml | 44 ------------------------------ 1 file changed, 44 deletions(-) delete mode 100644 examples/configuration/config.yaml diff --git a/examples/configuration/config.yaml b/examples/configuration/config.yaml deleted file mode 100644 index 77c6308..0000000 --- a/examples/configuration/config.yaml +++ /dev/null @@ -1,44 +0,0 @@ -# PyFed Configuration Example - -# Core Settings -domain: example.com -debug: false - -# Database -database: - url: postgresql://user:pass@localhost/pyfed - min_connections: 5 - max_connections: 20 - timeout: 30 - -# Redis -redis: - url: redis://localhost - pool_size: 10 - timeout: 30 - -# Security -security: - key_path: keys/ - signature_ttl: 300 - max_payload_size: 5000000 - allowed_algorithms: - - rsa-sha256 - -# Federation -federation: - shared_inbox: true - delivery_timeout: 30 - max_recipients: 100 - retry_delay: 300 - -# Media -media: - upload_path: uploads/ - max_size: 10000000 - allowed_types: - - image/jpeg - - image/png - - image/gif - - video/mp4 - - audio/mpeg \ No newline at end of file -- GitLab