NgInx: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 23: | Zeile 23: | ||
} | } | ||
} | } | ||
</pre> | |||
= Neueste Version unter Debian = | |||
<pre>cat <<EOS >/etc/apt/sources.list.d/nginx.list | |||
deb http://ftp.debian.org/debian/ testing main contrib non-free | |||
deb-src http://ftp.debian.org/debian/ testing main contrib non-free | |||
EOS | |||
cat <<EOS >> /etc/apt/preference | |||
Package: nginx | |||
Pin: release a=testing | |||
Pin-Priority: 900 | |||
EOS | |||
apt-get update | |||
# Info ueber verfuegbare Version: | |||
apt-cache policy nginx | |||
apt-get install nginx-full | |||
</pre> | </pre> | ||
Version vom 21. Juni 2017, 21:41 Uhr
Installation
apt-get install php5-cli php5-fpm nginx-full mariadb-server mariadb-client php5-mysql
Konfiguration
server {
listen 80;
server_name emex;
root /home/www/emex;
index index.php index.html;
location /home/www/emex {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
Neueste Version unter Debian
cat <<EOS >/etc/apt/sources.list.d/nginx.list deb http://ftp.debian.org/debian/ testing main contrib non-free deb-src http://ftp.debian.org/debian/ testing main contrib non-free EOS cat <<EOS >> /etc/apt/preference Package: nginx Pin: release a=testing Pin-Priority: 900 EOS apt-get update # Info ueber verfuegbare Version: apt-cache policy nginx apt-get install nginx-full