diff options
Diffstat (limited to 'bin/OpenSimDefaults.ini')
-rw-r--r-- | bin/OpenSimDefaults.ini | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index e846e73..f10596e 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini | |||
@@ -500,16 +500,18 @@ | |||
500 | http_listener_port = 9000 | 500 | http_listener_port = 9000 |
501 | console_port = 0 | 501 | console_port = 0 |
502 | 502 | ||
503 | ; ssl config: Experimental! The auto https config only really works definately on windows XP now | 503 | ; ssl config: Experimental! |
504 | ; you need a Cert Request/Signed pair installed in the MY store with the CN specified below | 504 | http_listener_ssl = false ; if set to true main server is replaced by a ssl one |
505 | ; you can use https on other platforms, but you'll need to configure the httpapi yourself for now | ||
506 | http_listener_ssl = false ; Also create a SSL server | ||
507 | http_listener_cn = "localhost" ; Use the cert with the common name | ||
508 | http_listener_sslport = 9001 ; Use this port for SSL connections | 505 | http_listener_sslport = 9001 ; Use this port for SSL connections |
509 | http_listener_ssl_cert = "" ; Currently unused, but will be used for OSHttpServer | 506 | ; currently if using ssl, regions ExternalHostName must the the same and equal to http_listener_cn |
510 | 507 | ; this will change is future | |
511 | ; HTTPS for "Out of band" management applications such as the remote | 508 | http_listener_cn = "myRegionsExternalHostName" |
512 | ; admin module | 509 | ; if the cert doesnt have a oficial CA or is selfsigned viewers option NoVerifySSLCert need to be set true |
510 | http_listener_cert_path = "mycert.p12" ; path for the cert file that is valid for the ExternalHostName | ||
511 | http_listener_cert_pass = "mycertpass" ; the cert passwork | ||
512 | |||
513 | ; addicional HTTPS for "Out of band" management applications such as the remote | ||
514 | ; admin module or scripts | ||
513 | ; | 515 | ; |
514 | ; Create https_listener = "True" will create a listener on the port | 516 | ; Create https_listener = "True" will create a listener on the port |
515 | ; specified. Provide the path to your server certificate along with it's | 517 | ; specified. Provide the path to your server certificate along with it's |
@@ -517,7 +519,7 @@ | |||
517 | ; https_listener = False | 519 | ; https_listener = False |
518 | ; Set our listener to this port | 520 | ; Set our listener to this port |
519 | ; https_port = 0 | 521 | ; https_port = 0 |
520 | ; Path to X509 certificate | 522 | ; Path to X509 certificate, can be the same as main or another |
521 | ; cert_path = "path/to/cert.p12" | 523 | ; cert_path = "path/to/cert.p12" |
522 | ; Password for cert | 524 | ; Password for cert |
523 | ; cert_pass = "password" | 525 | ; cert_pass = "password" |
@@ -529,6 +531,7 @@ | |||
529 | ; HttpBodyMaxLenMAX=16384 | 531 | ; HttpBodyMaxLenMAX=16384 |
530 | 532 | ||
531 | ; Hostname to use in llRequestURL/llRequestSecureURL | 533 | ; Hostname to use in llRequestURL/llRequestSecureURL |
534 | ; must be a valid hostname for the ssl cert. | ||
532 | ; if not defined - default machine name is being used | 535 | ; if not defined - default machine name is being used |
533 | ; (on Windows this mean NETBIOS name - useably only inside local network) | 536 | ; (on Windows this mean NETBIOS name - useably only inside local network) |
534 | ; ExternalHostNameForLSL=127.0.0.1 | 537 | ; ExternalHostNameForLSL=127.0.0.1 |