mirror of
https://github.com/Tygs/0bin.git
synced 2023-08-10 21:13:00 +03:00
216 lines
11 KiB
HTML
216 lines
11 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<title>Installation avec Apache — 0bin 0.1 documentation</title>
|
|
|
|
<link rel="stylesheet" href="../_static/classic.css" type="text/css" />
|
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
|
|
|
<script type="text/javascript">
|
|
var DOCUMENTATION_OPTIONS = {
|
|
URL_ROOT: '../',
|
|
VERSION: '0.1',
|
|
COLLAPSE_INDEX: false,
|
|
FILE_SUFFIX: '.html',
|
|
HAS_SOURCE: true
|
|
};
|
|
</script>
|
|
<script type="text/javascript" src="../_static/jquery.js"></script>
|
|
<script type="text/javascript" src="../_static/underscore.js"></script>
|
|
<script type="text/javascript" src="../_static/doctools.js"></script>
|
|
<link rel="top" title="0bin 0.1 documentation" href="../index.html" />
|
|
<link rel="next" title="Installation avec Nginx" href="nginx_install.html" />
|
|
<link rel="prev" title="Installation la plus simple" href="easy_install.html" />
|
|
</head>
|
|
<body role="document">
|
|
<div class="related" role="navigation" aria-label="related navigation">
|
|
<h3>Navigation</h3>
|
|
<ul>
|
|
<li class="right" style="margin-right: 10px">
|
|
<a href="../genindex.html" title="General Index"
|
|
accesskey="I">index</a></li>
|
|
<li class="right" >
|
|
<a href="nginx_install.html" title="Installation avec Nginx"
|
|
accesskey="N">next</a> |</li>
|
|
<li class="right" >
|
|
<a href="easy_install.html" title="Installation la plus simple"
|
|
accesskey="P">previous</a> |</li>
|
|
<li class="nav-item nav-item-0"><a href="../index.html">0bin 0.1 documentation</a> »</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="document">
|
|
<div class="documentwrapper">
|
|
<div class="bodywrapper">
|
|
<div class="body" role="main">
|
|
|
|
<div class="section" id="installation-avec-apache">
|
|
<h1>Installation avec Apache<a class="headerlink" href="#installation-avec-apache" title="Permalink to this headline">¶</a></h1>
|
|
<div class="admonition note">
|
|
<p class="first admonition-title">Note</p>
|
|
<p class="last">Vous devez avoir suivi <a class="reference internal" href="easy_install.html"><em>l’installation facile</em></a> avant.</p>
|
|
</div>
|
|
<p>Apache est plus lourd que <a class="reference internal" href="nginx_install.html"><em>Nginx</em></a> mais il
|
|
est aussi beaucoup plus connu:</p>
|
|
<ul class="simple">
|
|
<li>plus de gens pourront vous aider les fora;</li>
|
|
<li>votre hébergeur propose surement Apache;</li>
|
|
<li>la syntaxe des fichiers de configuration est familière pour beaucoup.</li>
|
|
</ul>
|
|
<p>Une installation apache est aussi beaucoup plus solide et sécurisé qu’une
|
|
installation facile. Vous bénéficierez:</p>
|
|
<ul class="simple">
|
|
<li>de la possibilité d’avoir plusieurs projets écoutant sur le prot 80;</li>
|
|
<li>de plusieurs modules Apache à votre disposition (comme la limitation
|
|
du nombre de requêtes);</li>
|
|
<li>de la solidité d’Apache en front end: il est sécurité, et il y a peu de chance
|
|
qu’il crash sous une forte charge;</li>
|
|
<li>les processus de votre site ne tournent pas avec les droits admin, même si
|
|
<a class="reference internal" href="options.html#user-and-group-fr"><span>–user</span></a> ne fonctionne pas sur votre OS.</li>
|
|
</ul>
|
|
<p>Apache s’installe avec votre gestionnaire de paquet habituel, nous ne couvrierons
|
|
pas cette partie.</p>
|
|
<div class="section" id="mod-wsgi">
|
|
<h2>Mod_wsgi<a class="headerlink" href="#mod-wsgi" title="Permalink to this headline">¶</a></h2>
|
|
<p>Les serveurs Web Python modernes fonctionnent tous de la même manière, en suivant
|
|
une norme d’interfaçage: WSGI.</p>
|
|
<p>C’est la solution la plus performante, et celle recommandée. Mais elle demande
|
|
l’installation du model Apache mod_wsgi. Si vous ne savez pas comment faire,
|
|
ou si vous ne pouvez pas le faire (par example sur un hébergement mutualisé
|
|
qui ne le propose pas), il vous faudra choisir l’installation CGI.</p>
|
|
<p>Premièrement, assurez-vous d’avoir mod_wsgi installé et chargé (en tant qu’admin):</p>
|
|
<div class="highlight-python"><div class="highlight"><pre>a2enmod wsgi
|
|
</pre></div>
|
|
</div>
|
|
<p>Ceci va activer mod_wsgi. Si cela ne marche pas, il faudra l’installer d’abord (
|
|
sur ubuntu, le paquet est libapache2-mod-wsgi)</p>
|
|
<p>Ensuite, il faut créer un fichier de configuration Apache, généralement dans
|
|
/etc/apache/sites-available/. Nommez le zerobin:</p>
|
|
<div class="highlight-python"><div class="highlight"><pre><VirtualHost *:80>
|
|
ServerName www.votersiteweb.com
|
|
|
|
WSGIDaemonProcess zerobin user=www-data group=www-data processes=1 threads=5
|
|
WSGIScriptAlias / /chemin/vers/zerobin/app.wsgi
|
|
|
|
<Directory /chemin/vers/zerobin/>
|
|
WSGIProcessGroup zerobin
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
</VirtualHost>
|
|
</pre></div>
|
|
</div>
|
|
<p>Activez le site web (en tant qu’admin):</p>
|
|
<div class="highlight-python"><div class="highlight"><pre>a2ensite zerobin
|
|
</pre></div>
|
|
</div>
|
|
<p>Et rechargez la configuration d’Apache (en tant qu’admin):</p>
|
|
<div class="highlight-python"><div class="highlight"><pre>service apache2 reload
|
|
</pre></div>
|
|
</div>
|
|
<p>Vous aurez noté que l’on fait référence à un fichier nommé app.wsgi. C’est un
|
|
fichier Python qui créé l’application qu’Apache va utiliser pour lancer le
|
|
processus Python:</p>
|
|
<div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">os</span><span class="o">,</span> <span class="nn">sys</span>
|
|
|
|
<span class="c"># s'assurer que le module zerobin est dans le PYTHON PATH et importable</span>
|
|
<span class="n">ZEROBIN_PARENT_DIR</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">dirname</span><span class="p">(</span><span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">dirname</span><span class="p">(</span><span class="n">__file__</span><span class="p">))</span>
|
|
<span class="n">sys</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">insert</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="n">ZEROBIN_PARENT_DIR</span><span class="p">)</span>
|
|
|
|
<span class="c"># créer le wsgi callable</span>
|
|
<span class="kn">from</span> <span class="nn">zerobin.routes</span> <span class="kn">import</span> <span class="n">get_app</span>
|
|
<span class="n">settings</span><span class="p">,</span> <span class="n">application</span> <span class="o">=</span> <span class="n">get_app</span><span class="p">(</span><span class="n">compressed_static</span><span class="o">=</span><span class="bp">True</span><span class="p">)</span>
|
|
</pre></div>
|
|
</div>
|
|
<p>Vous pouvez bien sûr créer le votre, puisque la fonction <cite>get_app</cite> et le seul
|
|
moyen de passer des paramètres à 0bin avec cette installation. Cela peut se
|
|
faire en créant un fichier de configuration et en le passant à la fonction:</p>
|
|
<div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">os</span><span class="o">,</span> <span class="nn">sys</span>
|
|
|
|
<span class="n">ZEROBIN_PARENT_DIR</span> <span class="o">=</span> <span class="s">'/chemin/du/dossier/parent/de/zerobin'</span>
|
|
<span class="n">sys</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">insert</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="n">ZEROBIN_PARENT_DIR</span><span class="p">)</span>
|
|
|
|
<span class="kn">from</span> <span class="nn">zerobin.routes</span> <span class="kn">import</span> <span class="n">get_app</span>
|
|
<span class="n">settings</span><span class="p">,</span> <span class="n">application</span> <span class="o">=</span> <span class="n">get_app</span><span class="p">(</span><span class="n">settings_file</span><span class="o">=</span><span class="s">'/path/to/settings.py'</span><span class="p">)</span>
|
|
</pre></div>
|
|
</div>
|
|
</div>
|
|
<div class="section" id="cgi">
|
|
<h2>CGI<a class="headerlink" href="#cgi" title="Permalink to this headline">¶</a></h2>
|
|
<p>Vous pouvez aussi utiliser CGI, mais nous n’avons pas encore eu le temps de
|
|
couvrir cette partie. Contactez nous si vous avez besoin de l’utiliser.</p>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
|
|
<div class="sphinxsidebarwrapper">
|
|
<h3><a href="../index.html">Table Of Contents</a></h3>
|
|
<ul>
|
|
<li><a class="reference internal" href="#">Installation avec Apache</a><ul>
|
|
<li><a class="reference internal" href="#mod-wsgi">Mod_wsgi</a></li>
|
|
<li><a class="reference internal" href="#cgi">CGI</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
|
|
<h4>Previous topic</h4>
|
|
<p class="topless"><a href="easy_install.html"
|
|
title="previous chapter">Installation la plus simple</a></p>
|
|
<h4>Next topic</h4>
|
|
<p class="topless"><a href="nginx_install.html"
|
|
title="next chapter">Installation avec Nginx</a></p>
|
|
<div role="note" aria-label="source link">
|
|
<h3>This Page</h3>
|
|
<ul class="this-page-menu">
|
|
<li><a href="../_sources/fr/apache_install.txt"
|
|
rel="nofollow">Show Source</a></li>
|
|
</ul>
|
|
</div>
|
|
<div id="searchbox" style="display: none" role="search">
|
|
<h3>Quick search</h3>
|
|
<form class="search" action="../search.html" method="get">
|
|
<input type="text" name="q" />
|
|
<input type="submit" value="Go" />
|
|
<input type="hidden" name="check_keywords" value="yes" />
|
|
<input type="hidden" name="area" value="default" />
|
|
</form>
|
|
<p class="searchtip" style="font-size: 90%">
|
|
Enter search terms or a module, class or function name.
|
|
</p>
|
|
</div>
|
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
|
</div>
|
|
</div>
|
|
<div class="clearer"></div>
|
|
</div>
|
|
<div class="related" role="navigation" aria-label="related navigation">
|
|
<h3>Navigation</h3>
|
|
<ul>
|
|
<li class="right" style="margin-right: 10px">
|
|
<a href="../genindex.html" title="General Index"
|
|
>index</a></li>
|
|
<li class="right" >
|
|
<a href="nginx_install.html" title="Installation avec Nginx"
|
|
>next</a> |</li>
|
|
<li class="right" >
|
|
<a href="easy_install.html" title="Installation la plus simple"
|
|
>previous</a> |</li>
|
|
<li class="nav-item nav-item-0"><a href="../index.html">0bin 0.1 documentation</a> »</li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer" role="contentinfo">
|
|
© Copyright 2012, Sam et Max.
|
|
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1.
|
|
</div>
|
|
</body>
|
|
</html> |