LoQR — различия между версиями
Строка 56: | Строка 56: | ||
#* на сервере '''LoQR Internal''':<syntaxhighlight lang="bash">./install internal</syntaxhighlight> | #* на сервере '''LoQR Internal''':<syntaxhighlight lang="bash">./install internal</syntaxhighlight> | ||
#* на сервере '''LoQR External''':<syntaxhighlight lang="bash">./install external</syntaxhighlight> | #* на сервере '''LoQR External''':<syntaxhighlight lang="bash">./install external</syntaxhighlight> | ||
+ | |||
+ | ==Включение TLS== | ||
+ | Чтобы включить TLS необходимо в конфигурационном файле application.yml '''LoQR External''' в секцию server добавить записи: | ||
+ | <syntaxhighlight lang="xml"> | ||
+ | ssl: | ||
+ | key-store-type: PKCS12 | ||
+ | key-store: <path-to-pkcs-12-file> | ||
+ | key-store-password: <pkcs-12 password> | ||
+ | key-alias: <key-alias> | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | Пример полной конфигурации: | ||
+ | <syntaxhighlight lang="xml"> | ||
+ | server: | ||
+ | port: 8099 | ||
+ | address: 0.0.0.0 | ||
+ | ssl: | ||
+ | key-store-type: PKCS12 | ||
+ | key-store: /media/keystore/examcont.p12 | ||
+ | key-store-password: 874814 | ||
+ | key-alias: examplecont | ||
+ | loqrExternal: | ||
+ | url: "http://example.com:8099" | ||
+ | loqr: "http://loqr.example.com:8098" | ||
+ | logoQRPath: "/opt/loq/logo_.png" | ||
+ | logoOn: true | ||
+ | timeoutInSecond: | ||
+ | QR: 120 | ||
+ | session: 600 | ||
+ | spring: | ||
+ | redis: | ||
+ | host: redis.example.com | ||
+ | port: 6379 | ||
+ | database: 1 | ||
+ | lettuce: | ||
+ | pool: | ||
+ | min-idle: 8 | ||
+ | </syntaxhighlight> |
Версия 16:04, 9 апреля 2020
Инсталляция
- Установить на серверы LoQR Internal и LoQR External Java Runtime Environement (8/11).
- Создать БД Redis, доступную для LoQR Internal и LoQR External.
- Распаковать архив с инсталлятором.
- Разрешить запуск файла
install
. - Скопировать конфигурационные файлы internal.conf.DEFAULT и external.conf.DEFAULT в файлы internal.conf и external.conf соответственно.
- В файлах internal.conf и external.conf указать необходимые конфигурационные параметры.
- internal.conf
# Installator Params (NOT NEED TO MODIFY) - Параметры инсталлятора. Не стоит изменять при необходимости. PC_MODULE=internal PC_TITLE="PC LoQR Internal" PC_MODULE_FILENAME=loqr-1.0-25.jar # PC LoQR Internal Params ## Self params - Протокол доступа, имя сервера LoQR Internal, порт, пользователь, под которым будет запускаться служба. PC_URL=http://loqr-int-hostname PC_PORT=8098 PC_USER=pc_user ## Another components addressation - Расположение прочих компонентов ### PC LoQR External PC_LOQR_EXT_URI=http://loqr-ext-hostname:8099 ### PC Server PC_SERVER_URI=https://pc-server-hostname/pc-api/ ### Redis REDIS_PORT=6379 REDIS_HOST=redis-hostname REDIS_DB=1
- external.conf
# Installator Params (NOT NEED TO MODIFY) PC_MODULE=external PC_TITLE="PC LoQR External" PC_MODULE_FILENAME=loqr-external-1.0-25.jar # PC LoQR External Params ## Self params PC_URL=http://loqr-ext-hostname PC_PORT=8099 PC_USER=pc_user PC_QR_LOGO=logo.png ## Another components addressation ### PC LoQR Internal PC_LOQR_INT_URI=http://loqr-int-hostname:8098 ### Redis REDIS_PORT=6379 REDIS_HOST=redis-hostname REDIS_DB=1
- internal.conf
- Запустить инсталлятор
- на сервере LoQR Internal:
./install internal
- на сервере LoQR External:
./install external
- на сервере LoQR Internal:
Включение TLS
Чтобы включить TLS необходимо в конфигурационном файле application.yml LoQR External в секцию server добавить записи:
ssl:
key-store-type: PKCS12
key-store: <path-to-pkcs-12-file>
key-store-password: <pkcs-12 password>
key-alias: <key-alias>
Пример полной конфигурации:
server:
port: 8099
address: 0.0.0.0
ssl:
key-store-type: PKCS12
key-store: /media/keystore/examcont.p12
key-store-password: 874814
key-alias: examplecont
loqrExternal:
url: "http://example.com:8099"
loqr: "http://loqr.example.com:8098"
logoQRPath: "/opt/loq/logo_.png"
logoOn: true
timeoutInSecond:
QR: 120
session: 600
spring:
redis:
host: redis.example.com
port: 6379
database: 1
lettuce:
pool:
min-idle: 8