diff options
Diffstat (limited to '')
-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 3f8864e..6539f6e 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini | |||
@@ -561,16 +561,18 @@ | |||
561 | http_listener_port = 9000 | 561 | http_listener_port = 9000 |
562 | console_port = 0 | 562 | console_port = 0 |
563 | 563 | ||
564 | ; ssl config: Experimental! The auto https config only really works definately on windows XP now | 564 | ; ssl config: Experimental! |
565 | ; you need a Cert Request/Signed pair installed in the MY store with the CN specified below | 565 | http_listener_ssl = false ; if set to true main server is replaced by a ssl one |
566 | ; you can use https on other platforms, but you'll need to configure the httpapi yourself for now | ||
567 | http_listener_ssl = false ; Also create a SSL server | ||
568 | http_listener_cn = "localhost" ; Use the cert with the common name | ||
569 | http_listener_sslport = 9001 ; Use this port for SSL connections | 566 | http_listener_sslport = 9001 ; Use this port for SSL connections |
570 | http_listener_ssl_cert = "" ; Currently unused, but will be used for OSHttpServer | 567 | ; currently if using ssl, regions ExternalHostName must the the same and equal to http_listener_cn |
571 | 568 | ; this will change is future | |
572 | ; HTTPS for "Out of band" management applications such as the remote | 569 | http_listener_cn = "myRegionsExternalHostName" |
573 | ; admin module | 570 | ; if the cert doesnt have a oficial CA or is selfsigned viewers option NoVerifySSLCert need to be set true |
571 | http_listener_cert_path = "mycert.p12" ; path for the cert file that is valid for the ExternalHostName | ||
572 | http_listener_cert_pass = "mycertpass" ; the cert passwork | ||
573 | |||
574 | ; addicional HTTPS for "Out of band" management applications such as the remote | ||
575 | ; admin module or scripts | ||
574 | ; | 576 | ; |
575 | ; Create https_listener = "True" will create a listener on the port | 577 | ; Create https_listener = "True" will create a listener on the port |
576 | ; specified. Provide the path to your server certificate along with it's | 578 | ; specified. Provide the path to your server certificate along with it's |
@@ -578,7 +580,7 @@ | |||
578 | ; https_listener = False | 580 | ; https_listener = False |
579 | ; Set our listener to this port | 581 | ; Set our listener to this port |
580 | ; https_port = 0 | 582 | ; https_port = 0 |
581 | ; Path to X509 certificate | 583 | ; Path to X509 certificate, can be the same as main or another |
582 | ; cert_path = "path/to/cert.p12" | 584 | ; cert_path = "path/to/cert.p12" |
583 | ; Password for cert | 585 | ; Password for cert |
584 | ; cert_pass = "password" | 586 | ; cert_pass = "password" |
@@ -590,6 +592,7 @@ | |||
590 | ; HttpBodyMaxLenMAX=16384 | 592 | ; HttpBodyMaxLenMAX=16384 |
591 | 593 | ||
592 | ; Hostname to use in llRequestURL/llRequestSecureURL | 594 | ; Hostname to use in llRequestURL/llRequestSecureURL |
595 | ; must be a valid hostname for the ssl cert. | ||
593 | ; if not defined - default machine name is being used | 596 | ; if not defined - default machine name is being used |
594 | ; (on Windows this mean NETBIOS name - useably only inside local network) | 597 | ; (on Windows this mean NETBIOS name - useably only inside local network) |
595 | ; ExternalHostNameForLSL=127.0.0.1 | 598 | ; ExternalHostNameForLSL=127.0.0.1 |