diff options
Diffstat (limited to '')
-rw-r--r-- | bin/OpenSim.ini.example | 55 |
1 files changed, 44 insertions, 11 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index bb73687..4df6584 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -46,22 +46,28 @@ | |||
46 | 46 | ||
47 | 47 | ||
48 | [Const] | 48 | [Const] |
49 | ; For a grid these will usually be the externally accessible IP/DNS | 49 | ; this section defines constants for grid services |
50 | ; name and use default public port 8002 and default private port 8003 | 50 | ; to simplify other configuration files default settings |
51 | ; For a standalone this will usually be the externally accessible IP/DNS | 51 | |
52 | ; name and use default public port 9000. The private port is not used | 52 | ; BaseURL |
53 | ; in the configuration for a standalone. | 53 | ; should be the externally accessible IP/DNS name of grid or standalone |
54 | 54 | ; http://externalHostName or https://externalHostName if using ssl | |
55 | ;# {BaseURL} {} {BaseURL} {"http://example.com" "http://127.0.0.1"} "http://127.0.0.1" | 55 | ; examples: http://mymachine.example.com, https://mymachine.example.com, https://127.0.0.1 |
56 | ; default: http://127.0.0.1 | ||
57 | ;# {BaseURL} {} {BaseURL} {"http://example.com" "http://127.0.0.1"} "" | ||
56 | BaseURL = http://127.0.0.1 | 58 | BaseURL = http://127.0.0.1 |
57 | 59 | ||
58 | ;# {PublicPort} {} {PublicPort} {8002 9000} "8002" | 60 | ; default public port |
61 | ; usually 8002 for grids. | ||
62 | ; on standalones it needs to match http_listener_port or http_listener_sslport if using ssl | ||
63 | ; in [Network] section below (defaults 9000 or 9001 if using ssl) | ||
64 | ;# {PublicPort} {} {PublicPort} {8002 9000 9001} "8002" | ||
59 | PublicPort = "8002" | 65 | PublicPort = "8002" |
60 | 66 | ||
67 | ;grid default private port 8003, not used in standalone | ||
61 | ;# {PrivatePort} {} {PrivatePort} {8003} "8003" | 68 | ;# {PrivatePort} {} {PrivatePort} {8003} "8003" |
62 | PrivatePort = "8003" | 69 | PrivatePort = "8003" |
63 | 70 | ||
64 | |||
65 | [Startup] | 71 | [Startup] |
66 | ;# {ConsolePrompt} {} {ConsolePrompt} {} "Region (\R) " | 72 | ;# {ConsolePrompt} {} {ConsolePrompt} {} "Region (\R) " |
67 | ;; Console prompt | 73 | ;; Console prompt |
@@ -433,7 +439,6 @@ | |||
433 | ;; Password for the default estate owner | 439 | ;; Password for the default estate owner |
434 | ; DefaultEstateOwnerPassword = password | 440 | ; DefaultEstateOwnerPassword = password |
435 | 441 | ||
436 | |||
437 | [SMTP] | 442 | [SMTP] |
438 | ;; The SMTP server enabled the email module to send email to external | 443 | ;; The SMTP server enabled the email module to send email to external |
439 | ;; destinations. | 444 | ;; destinations. |
@@ -466,7 +471,6 @@ | |||
466 | ;# {SMTP_SERVER_PASSWORD} {[Startup]emailmodule:DefaultEmailModule enabled:true} {SMTP server password} {} | 471 | ;# {SMTP_SERVER_PASSWORD} {[Startup]emailmodule:DefaultEmailModule enabled:true} {SMTP server password} {} |
467 | ; SMTP_SERVER_PASSWORD = "" | 472 | ; SMTP_SERVER_PASSWORD = "" |
468 | 473 | ||
469 | |||
470 | [Network] | 474 | [Network] |
471 | ;# {ConsoleUser} {} {User name for console account} {} | 475 | ;# {ConsoleUser} {} {User name for console account} {} |
472 | ;; Configure the remote console user here. This will not actually be used | 476 | ;; Configure the remote console user here. This will not actually be used |
@@ -483,10 +487,39 @@ | |||
483 | ;; the region ports use UDP. | 487 | ;; the region ports use UDP. |
484 | ; http_listener_port = 9000 | 488 | ; http_listener_port = 9000 |
485 | 489 | ||
490 | ; optional main server secure http (ssl) | ||
491 | ; to use ssl you need a ssl certificate in PKCS12 format that validates the ExternalHostnames | ||
492 | ; or their domains | ||
493 | ; some viewers by default only accept certificates signed by a oficial CA | ||
494 | ; to use others like self signed certificates with those viewers, | ||
495 | ; their debug option NoVerifySSLCert needs to be set true, You need to inform users about this | ||
496 | ; the main unsecure port will still open for some services. this may change in future. | ||
497 | |||
498 | ; set http_listener_ssl to enable main server ssl. it will replace unsecure port on most functions | ||
499 | ;# {http_listener_ssl}{} {enable main server ssl port)} {} false | ||
500 | ;http_listener_ssl = false | ||
501 | |||
502 | ; Set port for main SSL connections | ||
503 | ;# {http_listener_sslport}{} {main server ssl port)} {} 9001 | ||
504 | ;http_listener_sslport = 9001 ; | ||
505 | |||
506 | ; currently if using ssl, regions ExternalHostName must the the same and equal to http_listener_cn | ||
507 | ; this may be removed in future | ||
508 | ;# {http_listener_cn}{} {main server ssl externalHostName)} {} "" | ||
509 | ;http_listener_cn = "myRegionsExternalHostName" | ||
510 | |||
511 | ; the path for the certificate path | ||
512 | ;# {http_listener_cert_path}{} {main server ssl certificate file path)} {} "" | ||
513 | ;http_listener_cert_path = "mycert.p12" | ||
514 | |||
515 | ;# {http_listener_cert_pass}{} {main server ssl certificate password)} {} "" | ||
516 | ;http_listener_cert_pass = "mycertpass" ; the cert passwork | ||
517 | |||
486 | ; By default, OpenSimulator does not allow scripts to make HTTP calls to addresses on the simulator's LAN. | 518 | ; By default, OpenSimulator does not allow scripts to make HTTP calls to addresses on the simulator's LAN. |
487 | ; See the OutboundDisallowForUserScripts parameter in OpenSimDefaults.ini for more information on this filter. | 519 | ; See the OutboundDisallowForUserScripts parameter in OpenSimDefaults.ini for more information on this filter. |
488 | ; If you need to allow scripts to make some LAN calls use the OutboundDisallowForUserScriptsExcept parameter below. | 520 | ; If you need to allow scripts to make some LAN calls use the OutboundDisallowForUserScriptsExcept parameter below. |
489 | ; We recommend that you do not override OutboundDisallowForUserScripts directly unless you are very sure about what you're doing. | 521 | ; We recommend that you do not override OutboundDisallowForUserScripts directly unless you are very sure about what you're doing. |
522 | ; this HTTP calls can also use ssl see opensimDefaults.ini | ||
490 | ; | 523 | ; |
491 | ; You can whitelist individual endpoints by IP or FQDN, e.g. | 524 | ; You can whitelist individual endpoints by IP or FQDN, e.g. |
492 | ; | 525 | ; |