WIP - ActixWeb multi-tenant blog and newsletter API server. Originally forked from LukeMathWalker/zero-to-production.

fix: correct rustfs default credentials

+6 -6
+4 -4
.github/workflows/general.yml
··· 46 46 - 63791:63791 47 47 rustfs: 48 48 env: 49 - RUSTFS_ACCESS_KEY: S3SecretKeyx123456789 49 + RUSTFS_ACCESS_KEY: S3AccessKey 50 50 RUSTFS_ADDRESS: "0.0.0.0:9002" 51 51 RUSTFS_CONSOLE_ENABLE: false 52 52 RUSTFS_CORS_ALLOWED_ORIGINS: "*" 53 53 RUSTFS_REGION: global 54 - RUSTFS_SECRET_KEY: S3AccessKey 54 + RUSTFS_SECRET_KEY: S3SecretKeyx123456789 55 55 image: rustfs/rustfs:1.0.0-alpha.76 56 56 ports: 57 57 - 9002:9002 ··· 139 139 - 63791:63791 140 140 rustfs: 141 141 env: 142 - RUSTFS_ACCESS_KEY: S3SecretKeyx123456789 142 + RUSTFS_ACCESS_KEY: S3AccessKey 143 143 RUSTFS_ADDRESS: "0.0.0.0:9002" 144 144 RUSTFS_CONSOLE_ENABLE: false 145 145 RUSTFS_CORS_ALLOWED_ORIGINS: "*" 146 146 RUSTFS_REGION: global 147 - RUSTFS_SECRET_KEY: S3AccessKey 147 + RUSTFS_SECRET_KEY: S3SecretKeyx123456789 148 148 image: rustfs/rustfs:1.0.0-alpha.76 149 149 ports: 150 150 - 9002:9002
+2 -2
configuration/test.yaml
··· 14 14 base_url: http://localhost:8025 15 15 server: mailpit 16 16 s3_client: 17 - access_key: S3SecretKeyx123456789 17 + access_key: S3AccessKey 18 18 endpoint: http://127.0.0.1:9002 19 19 region: global 20 - secret_key: S3AccessKey 20 + secret_key: S3SecretKeyx123456789 21 21 hosts: 22 22 client: "http://127.0.0.1:5173" 23 23 redis_uri: "redis://127.0.0.1:63791"