mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
35 lines
972 B
PHP
35 lines
972 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/*
|
|
*
|
|
* Configuration file for all things relating to LoTW
|
|
*
|
|
*/
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Folder location for storing P12 certificate files on the system
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This folder must be outside of your www root for security reasons
|
|
|
|
|
*/
|
|
$config['lotw_keys_folder'] = "";
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Propagation modes that are not supported by LoTW
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| As per tqsl config the following propagation modes are not supported by
|
|
| LoTW and ignored. So Wavelog will not handle them during LoTW sync.
|
|
| As per tqsl v2.7.3 these modes are:
|
|
| - RPT
|
|
| - INTERNET
|
|
| Please do not edit!
|
|
|
|
|
*/
|
|
$config['lotw_unsupported_prop_modes'] = array('INTERNET', 'RPT');
|
|
|