Displaying 8 results from an estimated 8 matches for "allow_reloading".
2007 Feb 15
1
wrong startup information in production environment
.../upload_merb/current/log# /etc/init.d/merb_init start
Merb started with these options:
---
:template_ext:
:html: :herb
:js: :jerb
:xml: :xerb
:config: dist/conf/upload.conf
:drb_server_port: 32323
:sql_session: true
:cluster: 2
:cache_templates: false
:host: 127.0.0.1
:port: "6000"
:allow_reloading: true
:start_drb: true
:merb_root: /var/www/apps/upload_merb/current
:merb_config: /var/www/apps/upload_merb/current/dist/conf/merb.yml
:environment: production
Starting merb drb server on port: 32323
Starting merb server on port: 6000
Starting merb server on port: 6001
==========================...
2018 Feb 08
3
pjsip trunking configuration issue
Greetings !
My goal is to get Twilio trunking working, and with TLS/SRTP.
I see this concerning message in my log:
[Feb 7 16:50:26] ERROR[20596] res_sorcery_config.c: Could not create an object of type 'endpoint' with id ?twilio' from configuration file ?pjsip.conf?
Thus, ?pjsip show endpoints? does not show the endpoint for the Twilio trunk.
Hoping for a sanity check of
2023 Apr 08
1
TLS and NAT
Hello Steve,
use the following configuration for the transport and bind this
transport to the trunk:
[transport_name]
type=transport
protocol=tls
bind=192.168.13.24 ; your bind IP
ca_list_file=/etc/pki/tls/certs/ca-bundle.crt
; method=tlsv1_2
verify_server=yes
allow_reload=no
;tos=0xb8
;cos=3
external_media_address=your.ext.host.name ; hostname pointing to your
ext. IP
2007 May 14
7
Help a newb with 0.3.1
...tart fine:
$ merb
you must install the markaby gem to use .mab templates
you must install the haml gem to use .haml templates
ActiveRecord session mixed in
Rails session compatibilty on.
Compiling routes..
merb init called
Merb started with these options:
---
:dist_root: /path/to/merb/mrblog/dist
:allow_reloading: true
:environment: development
:merb_root: /path/to/merb/mrblog
:cache_templates: true
:use_mutex: true
:config: dist/conf/mup.conf
:host: 127.0.0.1
:show_error: true
:port: "4000"
:sql_session: true
However any request to 127.0.0.1:4000 returns:
Mon May 14 17:55:30 BST 2007: ERROR: u...
2023 Apr 09
1
TLS and NAT
Thanks, Michael. A few questions:
Is [transport_name] a reserved word, or am I supposed to replace it with
a name of my own, like '[did-transport]'?
Some of the keywords I haven't seen before. Is ca_list_file supposed to
be an aggregate of the public and private key? And what are the
'method,' 'tos' and 'cos' keywords, which are commented out in your
2023 Aug 18
2
PJSIP Losing knowledge of external_media_address
I've seen this happen three times in the wild now. I've been trying to
isolate the source of the issue, but so far it seems like there's not
enough debug output to know why this occurs.
Long story short:
- Start Asterisk
- PJSIP Handles receiving INVITE from ITSP via WAN (Asterisk is behind
NAT). SIP is handled correctly, Asterisk responds OK with RTP media
address of
2023 Apr 07
1
TLS and NAT
I want to configure communication with my phone provider using TLS for
all the obvious reasons. Since I'm behind a firewall, I'll be needing to
do it with NAT. There are examples of UDP plus NAT in pjsip.conf, but
none for TLS plus NAT. Would it be correct to set up the TLS transport
stanza to look like the [transport-udp-nat] stanza example, replacing
UDP with TLS in lines like
2006 Dec 07
3
What does js partial(...) do?
In the example application named "sample_app", comment.jerb contains
the following line:
$(''comments'').update(<%=js partial(:comments) %>);
What does the ''js'' method do to/with, if anything at all, ''partial(:comments)''?
Merb is quite fun to use and I''m starting to get a feel for it and
ruby. I''m surprised at