Merge branch 'mnt' of github.com:spacedeck/spacedeck-open into mnt

This commit is contained in:
mntmn
2020-11-10 20:54:03 +01:00
3 changed files with 53 additions and 4 deletions

51
docs/apache_setup.md Normal file
View File

@@ -0,0 +1,51 @@
# Apache as reverse proxy
Once spacedeck is running you can use Apache as a reverse proxy. For a general overview of how this works or how to configure specifics the [Apache Reverse Proxy Guide](https://httpd.apache.org/docs/2.4/howto/reverse_proxy.html) provides a good reference.
If you have the required modules and ssl certificates installed skip to the site config.
# Required modules
Install `mod_rewrite`, `mod_proxy` and `mod_proxy_wstunnel`
```
sudo a2enmod proxy rewrite proxy_wstunnel
```
# SSL certificates
Set up `certbot` frmo [letsencrypt](https://letsencrypt.org/) (if required) and get some certs…
```
sudo certbot --apache certonly -n -d space.example.net
```
# Site config
This config should work with Apache 2.4 and assumes spacedeck is running on localhost using port 9666, that `mod_rewrite`, `mod_proxy` and `mod_proxy_wstunnel` are active, and that ssl certificates have been installed with `certbot`.
```
<VirtualHost *:443>
ServerName space.example.net
ServerAdmin webmaster@space.example.net
ErrorLog /var/log/apache2/spacedeck-error.log
CustomLog /var/log/apache2/spacedeck-access.log combined
# ssl options
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/space.example.net/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/space.example.net/privkey.pem
# proxy spacedeck
RewriteEngine On
RewriteCond %{HTTP:Upgrade} =websocket [NC]
RewriteRule /(.*) ws://localhost:9666/$1 [P,L]
RewriteCond %{HTTP:Upgrade} !=websocket [NC]
RewriteRule /(.*) http://localhost:9666/$1 [P,L]
ProxyPassReverse / http://localhost:9666/
</VirtualHost>
```

View File

@@ -175,7 +175,7 @@ module.exports = {
crop_w: Sequelize.INTEGER,
crop_h: Sequelize.INTEGER,
shape: Sequelize.STRING,
shape_svg: Sequelize.STRING,
shape_svg: Sequelize.TEXT,
padding_left: Sequelize.INTEGER,
padding_right: Sequelize.INTEGER,
padding_top: Sequelize.INTEGER,

View File

@@ -593,8 +593,6 @@ var SpacedeckSections = {
evt.preventDefault();
}
this.active_tool = "pointer";
if (this.opened_dialog == id) {
this.opened_dialog = "none";
return;
@@ -1855,7 +1853,7 @@ var SpacedeckSections = {
// upload progress
var progress = e.loaded/e.total;
if (progress=1) {
if (progress===1) {
a.description = "Converting Media…";
} else {
a.description = "Upload "+parseInt(progress*100)+"%";