First commit

This commit is contained in:
Wim Pomp
2022-08-30 13:04:14 +02:00
parent 359f330f11
commit e6acbd7c7f
15 changed files with 308 additions and 0 deletions

23
matlab Normal file
View File

@@ -0,0 +1,23 @@
# nginx configuration
server {
listen 8585 default_server;
listen [::]:8585 default_server;
root /var/www/html;
index index.html;
server_name _;
location ~ ^/([0-9]+) {
proxy_set_header Host '127.0.0.1';
proxy_pass http://127.0.0.1:$1;
}
location / {
include proxy_params;
proxy_pass http://unix:/tmp/matlabhub.sock;
}
}