Skip to content

Commit ca864ad

Browse files
authored
Merge pull request #208 from json-scada/master
Version 0.50-alpha
2 parents f4a4b99 + df65339 commit ca864ad

File tree

89 files changed

+4189
-1645
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+4189
-1645
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
4848
- MongoDB as the real-time core database, persistence layer, config store, SOE historian.
4949
- Event-based realtime async data processing with MongoDB Change Streams.
5050
- Portability and modular interoperability over Linux, Windows, Mac OSX, x86/64, ARM.
51-
- Windows installer available in the [releases section](https://github.com/riclolsen/json-scada/releases/tag/V0.49-alpha).
51+
- Windows installer available in the [releases section](https://github.com/riclolsen/json-scada/releases/tag/V0.50-alpha).
5252
- Unlimited tags, servers, and users.
5353
- Horizontal scalability, from a single computer to big clusters (MongoDB-sharding), Docker containers, VMs, Kubernetes, cloud, or hybrid deployments.
5454
- Modular distributed architecture. Lightweight redundant data acquisition nodes can connect securely over TLS to the database server. E.g. a Raspberry PI can be a data acquisition node.
@@ -90,7 +90,7 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
9090
## Documentation
9191

9292
- [Generic Install Guide](https://github.com/riclolsen/json-scada/blob/master/docs/install.md)
93-
- [Windows Installer](https://github.com/riclolsen/json-scada/releases/tag/V0.49-alpha)
93+
- [Windows Installer](https://github.com/riclolsen/json-scada/releases/tag/V0.50-alpha)
9494
- [RedHat/Rocky Linux Installer Script](https://github.com/riclolsen/json-scada/blob/master/docs/install.md#rhel94-and-compatible-systems-automated-installation)
9595
- [Ubuntu Linux Installer Script](https://github.com/riclolsen/json-scada/blob/master/docs/install.md#ubuntu-2404-scripted-installation)
9696
- [Generic Install Guide](https://github.com/riclolsen/json-scada/blob/master/docs/install.md)

conf-templates/kor1-PergolaGrid.svg

+38-21
Loading

conf-templates/nginx.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ worker_processes 1;
55
#error_log ../log/error.log;
66
#error_log ../log/error.log notice;
77
#error_log ../log/error.log info;
8-
error_log "c:/json-scada/log/error.log" crit;
8+
error_log "c:/json-scada/log/nginx-error.log" crit;
99

1010
#pid ../log/nginx.pid;
1111

conf-templates/nginx_http.conf

+12
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,18 @@
8585
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
8686
}
8787

88+
# pass /camNNN to the corresponding JSMpeg server listening on port 9001, 9002, etc.
89+
#
90+
location ~ ^/cam(?<cam_id>\d\{3\})$ {
91+
set $port 9000;
92+
set $port $port$cam_id;
93+
proxy_pass http://127.0.0.1:$port;
94+
proxy_set_header Host $host;
95+
proxy_http_version 1.1;
96+
proxy_set_header Upgrade $http_upgrade;
97+
proxy_set_header Connection "upgrade";
98+
}
99+
88100
# deny access to .htaccess files
89101
location ~ /\.ht {
90102
deny all;

0 commit comments

Comments
 (0)