/usr/share/opensips/postgres/tls_mgm-create.sql is in opensips-postgres-module 2.2.2-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | INSERT INTO version (table_name, table_version) values ('tls_mgm','1');
CREATE TABLE tls_mgm (
id VARCHAR(64) PRIMARY KEY NOT NULL,
address VARCHAR(64) NOT NULL,
type INTEGER NOT NULL,
method VARCHAR(16),
verify_cert INTEGER,
require_cert INTEGER,
certificate VARCHAR(255),
private_key VARCHAR(255),
crl_check_all INTEGER,
crl_dir VARCHAR(255),
ca_list VARCHAR(255),
ca_dir VARCHAR(255),
cipher_list VARCHAR(255),
dh_params VARCHAR(255),
ec_curve VARCHAR(255)
);
|