Skip to content

Commit bfefeb6

Browse files
committed
docs: fix hosting folder links to include correct path
1 parent e981efa commit bfefeb6

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

Documentation/clients/dotnet/connection-strings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ var options = new ChronicleOptions
309309
};
310310
```
311311

312-
See the [TLS Configuration](../../tls-configuration.md) documentation for more details on certificate setup.
312+
See the [TLS Configuration](../../tls-hosting/configuration.md) documentation for more details on certificate setup.
313313

314314
## Best Practices
315315

@@ -378,6 +378,6 @@ If you encounter TLS errors:
378378

379379
## See Also
380380

381-
- [TLS Configuration](../../tls-configuration.md)
381+
- [TLS Configuration](../../tls-hosting/configuration.md)
382382
- [Namespaces](namespaces.md)
383383
- [Getting Started](../../get-started/index.md)

Documentation/hosting/encryption-certificate.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ Ensure you have configured the certificate path and password as described above.
192192

193193
## Next Steps
194194

195-
- [Local Certificates](local-certificates.md) - TLS certificate setup for development
196-
- [Production Hosting](production.md) - Production deployment requirements
197-
- [Configuration](configuration.md) - Complete configuration reference
195+
- [Local Certificates](hosting/local-certificates.md) - TLS certificate setup for development
196+
- [Production Hosting](hosting/production.md) - Production deployment requirements
197+
- [Configuration](hosting/configuration.md) - Complete configuration reference
198198

Documentation/hosting/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Chronicle provides multiple deployment options to suit different environments an
44

55
## Deployment Options
66

7-
- **[Production](production.md)** - Docker-based production deployment with MongoDB
8-
- **[Configuration](configuration.md)** - Complete configuration reference
9-
- **[Local Certificates](local-certificates.md)** - Generate and configure TLS certificates for local development
7+
- **[Production](hosting/production.md)** - Docker-based production deployment with MongoDB
8+
- **[Configuration](hosting/configuration.md)** - Complete configuration reference
9+
- **[Local Certificates](hosting/local-certificates.md)** - Generate and configure TLS certificates for local development
1010
- **Development** - Local development setup with MongoDB
1111
- **Docker Compose** - Multi-container setup for development and testing
1212

@@ -17,7 +17,7 @@ All Chronicle hosting environments require:
1717
- **.NET 9 Runtime** - Chronicle is built on .NET 9
1818
- **MongoDB** - Primary storage backend for events and projections
1919
- **Network Access** - Chronicle exposes multiple ports for different services
20-
- **Configuration** - See [Configuration](configuration.md) for details
20+
- **Configuration** - See [Configuration](hosting/configuration.md) for details
2121

2222
## Architecture Overview
2323

Documentation/hosting/local-certificates.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,5 +246,5 @@ If the client cannot connect:
246246

247247
## Next Steps
248248

249-
- [Production Hosting](production.md) - Learn about production certificate requirements
250-
- [Configuration](configuration.md) - Complete configuration reference
249+
- [Production Hosting](hosting/production.md) - Learn about production certificate requirements
250+
- [Configuration](hosting/configuration.md) - Complete configuration reference

Documentation/hosting/production.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ docker pull cratis/chronicle:1.0.0
1818

1919
## Configuration
2020

21-
Chronicle requires configuration to define its runtime behavior. For complete configuration details, see the [Configuration](configuration.md) guide.
21+
Chronicle requires configuration to define its runtime behavior. For complete configuration details, see the [Configuration](hosting/configuration.md) guide.
2222

2323
The configuration file must be mounted into the container at `/app/chronicle.json`, or you can use environment variables with the `Cratis__Chronicle__` prefix.
2424

@@ -80,11 +80,11 @@ volumes:
8080
1. **Use specific version tags** instead of `latest` for production deployments
8181
2. **Mount configuration as read-only** (`-v /path/to/chronicle.json:/app/chronicle.json:ro`)
8282
3. **Use environment-specific connection strings** for MongoDB
83-
4. **Configure appropriate timeouts** based on your infrastructure (see [Configuration](configuration.md))
83+
4. **Configure appropriate timeouts** based on your infrastructure (see [Configuration](hosting/configuration.md))
8484
5. **Enable health checks** for container orchestration
8585
6. **Set up monitoring** for all exposed ports
8686
7. **Use secrets management** for sensitive configuration values
87-
8. **Enable TLS** with proper certificates (see [TLS Configuration](../tls-configuration.md))
87+
8. **Enable TLS** with proper certificates (see [TLS Configuration](../tls-hosting/configuration.md))
8888

8989
## Health Checks
9090

@@ -95,7 +95,7 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
9595
CMD curl -f http://localhost:8080/health || exit 1
9696
```
9797

98-
> **Note**: The health check endpoint path is configurable. See [Configuration](configuration.md#health-check-endpoint) for details.
98+
> **Note**: The health check endpoint path is configurable. See [Configuration](hosting/configuration.md#health-check-endpoint) for details.
9999

100100
## Security Considerations
101101

@@ -104,7 +104,7 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
104104
- **Access Control**: Implement proper firewall rules for exposed ports
105105
- **Secrets Management**: Use external secret management for sensitive configuration
106106
- **Regular Updates**: Keep Chronicle and MongoDB images updated
107-
- **TLS Certificates**: Configure valid TLS certificates for production (see [TLS Configuration](../tls-configuration.md))
107+
- **TLS Certificates**: Configure valid TLS certificates for production (see [TLS Configuration](../tls-hosting/configuration.md))
108108

109109
## Scaling
110110

Documentation/tls-configuration.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ var options = new ChronicleOptions
7878
};
7979
```
8080

81-
You can also enable TLS for development to test TLS-related functionality. See [Local Certificate Setup](local-certificates.md) for guidance on generating and configuring development certificates.
81+
You can also enable TLS for development to test TLS-related functionality. See [Local Certificate Setup](hosting/local-certificates.md) for guidance on generating and configuring development certificates.
8282

8383
### Production
8484

@@ -117,8 +117,8 @@ For production environments, obtain certificates from:
117117

118118
For development environments, generate self-signed certificates:
119119

120-
- Using the [.NET CLI](local-certificates.md#option-1-using-net-cli-recommended-for-net-developers)
121-
- Using [OpenSSL](local-certificates.md#option-2-using-openssl)
120+
- Using the [.NET CLI](hosting/local-certificates.md#option-1-using-net-cli-recommended-for-net-developers)
121+
- Using [OpenSSL](hosting/local-certificates.md#option-2-using-openssl)
122122

123123
## Connection String Configuration
124124

@@ -216,7 +216,7 @@ For development, use a Debug build which allows running without a certificate.
216216

217217
## See Also
218218

219-
- [Local Certificate Setup](local-certificates.md) - Generate and configure development certificates
220-
- [Production Hosting](production.md) - Production deployment guidance
221-
- [Configuration](configuration.md) - Complete configuration reference
219+
- [Local Certificate Setup](hosting/local-certificates.md) - Generate and configure development certificates
220+
- [Production Hosting](hosting/production.md) - Production deployment guidance
221+
- [Configuration](hosting/configuration.md) - Complete configuration reference
222222

0 commit comments

Comments
 (0)