Документ подготовлен по запросу НОТИМ для формализации AI-компонента платформы. Формат вдохновлён AI Model Cards (Google/HuggingFace) и ГОСТ Р 71476-2024 (ИСО/МЭК 22989:2022).
| Параметр | Значение |
| # This file contains important security parameters. If you modify this file | |
| # manually, Certbot will be unable to automatically provide future security | |
| # updates. Instead, Certbot will print and log an error message with a path to | |
| # the up-to-date file that you will need to refer to when manually updating | |
| # this file. | |
| ssl_session_cache shared:le_nginx_SSL:1m; | |
| ssl_session_timeout 1440m; | |
| ssl_protocols TLSv1 TLSv1.1 TLSv1.2; |
| #!/bin/bash | |
| set -euo pipefail | |
| set -x | |
| fullimage=${IMAGE:-$1} | |
| image=${fullimage##*/} | |
| repo=${image%%:*} | |
| tag=${image##*:} | |
| REG=${fullimage%%/*} | |
| PROTO=https:// | |
| set +x |
| #!/usr/bin/env bash | |
| set -u | |
| IFS=$'\n\t' | |
| ## Author: anton.lugovoi | |
| #/ | |
| #/ Description: Move interface into the drop zone | |
| #/ if monitored IP became unreachable | |
| #/ Restores interface original zone | |
| #/ if monitored IP became reachable |
| #!/bin/sh | |
| # | |
| # Originally part of vpnc source code: | |
| # © 2005-2012 Maurice Massar, Jörg Mayer, Antonio Borneo et al. | |
| # © 2009-2012 David Woodhouse <dwmw2@infradead.org> | |
| # | |
| # This program is free software; you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation; either version 2 of the License, or | |
| # (at your option) any later version. |
| #!/usr/bin/env bash | |
| set -e | |
| echo "Installing dependencies..." | |
| if [ -x "$(command -v apt-get)" ]; then | |
| sudo su -s /bin/bash -c 'sleep 30 && apt-get update && apt-get install unzip' root | |
| else | |
| sudo yum update -y | |
| sudo yum install -y unzip wget | |
| fi |
| datacenter = "dc1" | |
| ui = true | |
| client_addr = "0.0.0.0" |
| [Unit] | |
| Description=Consul service discovery agent | |
| Requires=network-online.target | |
| After=network.target | |
| [Service] | |
| User=consul | |
| Group=consul | |
| PIDFile=/run/consul/consul.pid | |
| Restart=on-failure |
| { | |
| "streams": { | |
| "Nasa-high": { | |
| "input-path": "/liveedge4/smil:c03_high_th.smil/playlist.m3u8?gid=anywhere&uid=2112038&did=1c0bb708-3c1a-54c1-bf8e-174e3809d584&ip=103.13.228.0-103.13.229.255&cid=dtv%3Ac03&exp=915902&max=1&sig=2dccf297b4f274c93b959d292eaca1c3ad4806a8&app=anywhere", | |
| "servers": ["http://tvsedge127.truevisions.tv"] | |
| } | |
| } | |
| } |
| var express = require('express') | |
| var bodyParser = require('body-parser'); | |
| var MongoClient = require('mongodb').MongoClient; | |
| var ObjectId = require('mongodb').ObjectID; | |
| var app = express(), | |
| server = require('http').createServer(app), | |
| io = require('socket.io').listen(server); | |
| var db; |