-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsettings.ini.example
More file actions
42 lines (34 loc) · 1.21 KB
/
settings.ini.example
File metadata and controls
42 lines (34 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
; Delphi MCP Server Configuration
; Copy this file to settings.ini and modify as needed
[Server]
; Server configuration
Port=3000
Host=localhost
Name=delphi-mcp-server
Version=1.0.0
Endpoint=/mcp
[CORS]
; Cross-Origin Resource Sharing configuration
; Boolean values: use 1 (true) or 0 (false)
Enabled=1
; Comma-separated list of allowed origins
; Use * to allow all origins (not recommended for production)
; Default: localhost and 127.0.0.1 with http and https
AllowedOrigins=http://localhost,http://127.0.0.1,https://localhost,https://127.0.0.1,http://localhost:3000,http://127.0.0.1:3000
[SSL]
; SSL/TLS configuration (optional)
; Boolean values: use 1 (true) or 0 (false)
Enabled=0
; Path to SSL certificate file (PEM format)
; Example: C:\dev\Delphi-MCP-Server\certs\server.crt
CertFile=
; Path to SSL private key file (PEM format)
; Example: C:\dev\Delphi-MCP-Server\certs\server.key
KeyFile=
; Path to root certificate file (optional, PEM format)
; Example: C:\dev\Delphi-MCP-Server\certs\ca.crt
RootCertFile=
; Note: To generate self-signed certificates for development:
; Run: generate-ssl-cert.bat
; This will create certificates in the certs directory
; For production, use certificates from a trusted Certificate Authority