Editions: Corporate
Versions: 4.4.0+ with Apache2
Webchannels allow you to make a channel or the media it contains publicly available on the Internet from your intranet.
If you want to use the feature, first enable it under
Configuration -> Components -> Webchannel.
Then you can define each channel as a webchannel, if desired.
To do this, open the channel settings and activate the "Webchannel" option and enter the domain under which the webchannel should be accessible outside your intranet.

The configuration in VIMP is now complete.
Now you only have to make sure that the registered domain also points to the webchannel. To do this, perform the following steps:
1. Set up a new virtual host for the webchannel in your Apache configuration (e.g. webchannel.myvimp.com), where the DocumentRoot directory must point to the web folder of your VIMP instance (e.g. /var/www/vimp/web).
2. Enable proxy and proxy_http with the following commands:
a2enmod proxy
a2enmod proxy_http
3. Set up a rewrite condition for HTTPS. To do this, insert the following lines directly after the closed </Directory> tag in the previously created host entry (replace the domain accordingly):
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ <a href="
This rule ensures that a connection that is not secure is redirected to HTTPs first.
4. Set up the proxy settings in the previously created host (<a href="http://webchannel.myvimp.com">http://webchannel.myvimp.com</a>):
<Proxy>
Order Deny,Allow
Allow from all
</Proxy>
ProxyPass / <a href="
5. Finally, enable the new vHost and restart the Apache web server:
a2ensite <name_of_the_vhost_config_file>
service apache2 restart
6. Now configure your firewall accordingly that accesses to your VIMP server are possible over the defined domain.
Then you can open the appropriate webchannel from the internet over the indicated domain.
Below is a sample vHost configuration for a webchannel (exemplified with a Let's Encrypt SSL configuration):
<VirtualHost *:80>
# Replace the e-mail address in the following line with your own e-mail address
ServerAdmin [email protected]
# Replace /var/www/vimp in the following line with your individual VIMP installation path
DocumentRoot "/var/www/vimp/web"
# Replace webchannel.myvimp.com in the following line with your individual domain
ServerName webchannel.myvimp.com
# Replace /var/www/vimp in the following line with your individual VIMP installation path
<Directory "/var/www/vimp/web">
Options +FollowSymLinks -SymLinksIfOwnerMatch
AllowOverride All
RewriteEngine On
Require all granted
</Directory>
RewriteEngine On
RewriteCond %{HTTPS} off
# Replace webchannel.myvimp.com in the following line with your individual domain
RewriteRule ^(.*)$ <a href="