Difference between revisions of "H5ai"

From SME Server
Jump to navigationJump to search
(Page init)
 
m (WIP)
Line 1: Line 1:
 
==About==
 
==About==
 
[https://larsjung.de/h5ai/ '''h5ai'''] is a modern file indexer for HTTP web servers with focus on your files. Directories are displayed in a appealing way and browsing them is enhanced by different views, a breadcrumb and a tree overview. A demo can be seen [https://larsjung.de/h5ai/demo/ '''here'''].
 
[https://larsjung.de/h5ai/ '''h5ai'''] is a modern file indexer for HTTP web servers with focus on your files. Directories are displayed in a appealing way and browsing them is enhanced by different views, a breadcrumb and a tree overview. A demo can be seen [https://larsjung.de/h5ai/demo/ '''here'''].
 +
 +
[[File:H5ai-1.png]]
 +
 +
==Installation==
 +
===Preperation===
 +
====sub domain====
 +
The h5ai indexer does not work with webserver aliases (Ibay used as web content), so we need to create a (sub) domain (Apache virtual host), e.g. files.myserver.com. This domain can be created through the server manager. In this example we will use ''files.myserver.com'', mapped to an ibay called ''depot'', so please create the ibay ''depot'' first and then your domain with the ''depot'' ibay as primary content through server manager.
  
  
[[File:H5ai-1.png]]
+
====webapps common====
 +
The ''easy'' way to create and manage virtual hosts is using the contrib [[Webapps-common|'''smeserver-webapps-common''']] from the FWS repository so this repo needs to be enabled first. Please see [[fws |'''here''']] on how to enable the FWS repository.
  
  
 +
====custom template====
 +
Once the sub domain and ibay are created and smeserver-webapps-common is installed, we need to create a custom template to add an important directive to the virtual host. Firstly we need to create the template-ustom directory:
 +
mkdir -p /etc/e-smith/custom-templates/etc/httpd/httpd/conf/WebappVirtualHost
 +
and create the template fragment:
 +
nano -w /etc/e-smith/templates-custom/etc/httpd/httpd/conf/WebappVirtualHost/60DirectoryIndex
  
==Installation==
+
and add the following content and save the file:
The h5ai indexer does not work with webserver aliases (Ibay used as web content), so we need to create a (sub) domain (Apache virtual host), e.g. files.myserver.com. This domain can be created through the server manager. In this example we will use ''files.myserver.com'', so please create your domain before continuing.
+
{
 +
use esmith::util;
 +
my $dindex = $domain->prop('DirectoryIndex') || '';
 +
if ($dindex ne ''){
 +
    $OUT .= "    DirectoryIndex $dindex\n";
 +
}
 +
}
  
 +
====Virtual host====
  
The ''easy'' way to create and manage virtual hosts is using the contrib [[Webapps-common|'''smeserver-webapps-common''']] from the FWS repository so this repo needs to be enabled first. Please see [[fws |'''here''']] on how to enable the FWS repository.
+
Once the contrib smeserver-webapps-common has been installed from the FWS repo, we can create the required virtual host as follows:
 +
db domains setprop files.myserver.com TemplatePath WebAppVirtualHost \
 +
DocumentRoot /home/e-smith/files/ibays/depot/html \
 +
DirectoryIndex /_h5ai/server/php/index.php

Revision as of 11:00, 27 June 2015

About

h5ai is a modern file indexer for HTTP web servers with focus on your files. Directories are displayed in a appealing way and browsing them is enhanced by different views, a breadcrumb and a tree overview. A demo can be seen here.

H5ai-1.png

Installation

Preperation

sub domain

The h5ai indexer does not work with webserver aliases (Ibay used as web content), so we need to create a (sub) domain (Apache virtual host), e.g. files.myserver.com. This domain can be created through the server manager. In this example we will use files.myserver.com, mapped to an ibay called depot, so please create the ibay depot first and then your domain with the depot ibay as primary content through server manager.


webapps common

The easy way to create and manage virtual hosts is using the contrib smeserver-webapps-common from the FWS repository so this repo needs to be enabled first. Please see here on how to enable the FWS repository.


custom template

Once the sub domain and ibay are created and smeserver-webapps-common is installed, we need to create a custom template to add an important directive to the virtual host. Firstly we need to create the template-ustom directory:

mkdir -p /etc/e-smith/custom-templates/etc/httpd/httpd/conf/WebappVirtualHost

and create the template fragment:

nano -w /etc/e-smith/templates-custom/etc/httpd/httpd/conf/WebappVirtualHost/60DirectoryIndex

and add the following content and save the file:

{
use esmith::util;
my $dindex = $domain->prop('DirectoryIndex') || ;
if ($dindex ne ){
   $OUT .= "    DirectoryIndex $dindex\n";
}
}

Virtual host

Once the contrib smeserver-webapps-common has been installed from the FWS repo, we can create the required virtual host as follows:

db domains setprop files.myserver.com TemplatePath WebAppVirtualHost \
DocumentRoot /home/e-smith/files/ibays/depot/html \
DirectoryIndex /_h5ai/server/php/index.php