Difference between pages "Package:Minitube" and "Package:Tengine"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
(links and formatting)
 
 
Line 1: Line 1:
{{Ebuild
{{Ebuild
|Summary=Qt4 YouTube Client
|Summary=Robust, small and high performance http and reverse proxy server
|CatPkg=media-video/minitube
|CatPkg=www-servers/tengine
|Homepage=http://flavio.tordini.org/minitube
|Maintainer=
|Homepage=http://tengine.taobao.org
}}
}}
[http://flavio.tordini.org/minitube Minitube] is a qt youtube client, and video player.  This program is useful for limiting quality on videos for older hardwareMinitube has several sharing features, float on top features, continuous playback, snapshot, subscription, compact mode, full screen, and more.
Tengine is an nginx forkIt supports DSO module loading, meaning it can have external modules without the need to compile them in.


Install via:
==Installation==
{{console|body=###i## emerge tengine}}


{{console|body=###i## emerge media-video/minitube}}
==Configuration==
Files for configuration are located at {{c|/etc/tengine}}


=== Keybindings ===
The major differing point in tengine from nginx is that you have to specifically declare which modules are loaded.  Available modules are located at {{c|/var/lib/tengine/modules}}.


* Toggle full screen mode: '''f11'''
{{file|name=/etc/tengine/tengine.conf|desc=DSO module statements|body=
...
dso {
load ngx_http_charset_filter_module.so;
load ngx_http_fastcgi_module.so;
load ngx_http_rewrite_module.so;
}
...
}}
 
===Tengine===
{{c|/etc/tengine/tengine.conf}} contains engine specific configurations.
 
===Sites===
{{c|/etc/tengine/sites-available/localhost}} has site specific configurations.  Generally localhost is copied to domain.tld file formats in the {{c|/etc/tengine/sites-available/}} directory.


* Toggle compact mode: '''ctrl + shift + c'''
==Usage==
To start the tengine server:


* Next video: '''ctrl + right'''
{{console|body=###i## rc-update add tengine default
###i## rc}}


* Previous video: '''ctrl + left'''
{{EbuildFooter}}
{{EbuildFooter}}

Revision as of 08:36, January 30, 2015

Tengine

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

Tengine is an nginx fork. It supports DSO module loading, meaning it can have external modules without the need to compile them in.

Installation

root # emerge tengine

Configuration

Files for configuration are located at /etc/tengine

The major differing point in tengine from nginx is that you have to specifically declare which modules are loaded. Available modules are located at /var/lib/tengine/modules.

   /etc/tengine/tengine.conf - DSO module statements
...
dso {
	load ngx_http_charset_filter_module.so;
	load ngx_http_fastcgi_module.so;
	load ngx_http_rewrite_module.so;
}
...

Tengine

/etc/tengine/tengine.conf contains engine specific configurations.

Sites

/etc/tengine/sites-available/localhost has site specific configurations. Generally localhost is copied to domain.tld file formats in the /etc/tengine/sites-available/ directory.

Usage

To start the tengine server:

root # rc-update add tengine default
root # rc