Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am nicolasmahe on github.
  • I am nicolasmahe (https://keybase.io/nicolasmahe) on keybase.
  • I have a public key ASBW5GRs_-MBy1VX3KGFkHli8EDZBCOtvM8KvPn84XJN_wo

To claim this, I am signing this object:

@NicolasMahe
NicolasMahe / Installation Nginx PHP MySQL.md
Last active April 18, 2017 19:21
Installation Nginx PHP MySQL

Goal

Ubuntu 14.04

NGINX > 1.9 (mainline)

PHP 7

MySQL

@NicolasMahe
NicolasMahe / nginx config example
Last active March 16, 2016 08:39
Configuration files for nginx
# Replace every VARIABLE
server {
server_name YOUR_SERVER_NAME;
listen 80 default_server;
listen [::]:80 default_server;
return 301 https://$server_name$request_uri;
}