Skip to content

Instantly share code, notes, and snippets.

@HachemiH
Created January 18, 2016 23:31
Show Gist options
  • Select an option

  • Save HachemiH/6cfe11f2b9f4d4e7b18d to your computer and use it in GitHub Desktop.

Select an option

Save HachemiH/6cfe11f2b9f4d4e7b18d to your computer and use it in GitHub Desktop.
Fichier Vhost toto.fr Nginx
server {
listen 80;
server_name toto.fr www.toto.fr;
root /home/toto/www;
index index.php index.html index.htm index.nginx-debian.html;
location / {
try_files $uri $uri/ =404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /home/toto/www;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment