SoGo enabled
[root@sparky ~]# cat /etc/httpd/conf.d/default-virtualhost.inc
# ================= DO NOT MODIFY THIS FILE =================
#
# Manual changes will be lost when this file is regenerated.
#
# Please read the developer's guide, which is available
# at NethServer official site: https://www.nethserver.org
#
#
#
# 10server-manager permanent redirect
#
RewriteEngine On
RewriteRule ^/server-manager(/.*)?$ https://%{HTTP_HOST}:980$1 [L,R=301]
#
# 20webtop
#
RewriteEngine on
RewriteRule ^/webtop(/.*)?$ https://%{SERVER_NAME}/webtop$1 [L,R=301]
#
# 30SOGo
#
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/SOGo(/.*)?$ https://%{HTTP_HOST}/SOGo$1 [R=301,L]
RewriteRule ^/^(cal|card|dav)$ https://%{HTTP_HOST}/SOGo/dav [R=301,L]
RewriteRule ^/.well-known/^(caldav|carddav)$ https://%{HTTP_HOST}/SOGo/dav [R=301,L]
#
# 40nextcloud
#
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/nextcloud(/.*)?$ https://%{HTTP_HOST}/nextcloud$1 [L,R=301]
#
# 80vhost_default -- include template httpd/vhost-default
# for backward compatibility
#
[root@sparky ~]#
[root@sparky ~]#
[root@sparky ~]# cat /etc/httpd/conf.d/webtop.conf
# ================= DO NOT MODIFY THIS FILE =================
#
# Manual changes will be lost when this file is regenerated.
#
# Please read the developer's guide, which is available
# at NethServer official site: https://www.nethserver.org
#
#
#
# 10base -- WebTop configuration
#
ProxyPass /webtop/push ws://127.0.0.1:58080/webtop/push
ProxyPassReverse /webtop/push ws://127.0.0.1:58080/webtop/push
ProxyPass /webtop http://127.0.0.1:58080/webtop
ProxyPassReverse /webtop http://127.0.0.1:58080/webtop
# webtop ActiveSync is disabled
<Directory "/usr/share/webtop/z-push/">
AllowOverride None
Options None
Require all granted
</Directory>
Webtop Enabled
[root@sparky ~]# cat /etc/httpd/conf.d/default-virtualhost.inc
# ================= DO NOT MODIFY THIS FILE =================
#
# Manual changes will be lost when this file is regenerated.
#
# Please read the developer's guide, which is available
# at NethServer official site: https://www.nethserver.org
#
#
#
# 10server-manager permanent redirect
#
RewriteEngine On
RewriteRule ^/server-manager(/.*)?$ https://%{HTTP_HOST}:980$1 [L,R=301]
#
# 20webtop
#
RewriteEngine on
RewriteRule ^/webtop(/.*)?$ https://%{SERVER_NAME}/webtop$1 [L,R=301]
#
# 30SOGo
#
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/SOGo(/.*)?$ https://%{HTTP_HOST}/SOGo$1 [R=301,L]
RewriteRule ^/^(cal|card|dav)$ https://%{HTTP_HOST}/SOGo/dav [R=301,L]
RewriteRule ^/.well-known/^(caldav|carddav)$ https://%{HTTP_HOST}/SOGo/dav [R=301,L]
#
# 40nextcloud
#
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/nextcloud(/.*)?$ https://%{HTTP_HOST}/nextcloud$1 [L,R=301]
#
# 80vhost_default -- include template httpd/vhost-default
# for backward compatibility
#
[root@sparky ~]# cat /etc/httpd/conf.d/webtop.conf
# ================= DO NOT MODIFY THIS FILE =================
#
# Manual changes will be lost when this file is regenerated.
#
# Please read the developer's guide, which is available
# at NethServer official site: https://www.nethserver.org
#
#
#
# 10base -- WebTop configuration
#
ProxyPass /webtop/push ws://127.0.0.1:58080/webtop/push
ProxyPassReverse /webtop/push ws://127.0.0.1:58080/webtop/push
ProxyPass /webtop http://127.0.0.1:58080/webtop
ProxyPassReverse /webtop http://127.0.0.1:58080/webtop
# webtop ActiveSync is enabled
Alias /Microsoft-Server-ActiveSync /usr/share/webtop/z-push/index.php
<Directory "/usr/share/webtop/z-push/">
AllowOverride None
Options None
Require all granted
</Directory>
[root@sparky ~]#