Skip to content

Instantly share code, notes, and snippets.

@ctrlaltdylan
Created January 2, 2016 03:17
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save ctrlaltdylan/18d78a608a3d81c964e7 to your computer and use it in GitHub Desktop.
Save ctrlaltdylan/18d78a608a3d81c964e7 to your computer and use it in GitHub Desktop.
The nginx server configuration file needed to host the MirrorMirror application
server {
listen 80;
server_name localhost;
root /home/pi/projects/MirrorMirror/public;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/myapp-error.log error;
sendfile off;
client_max_body_size 100m;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
}
location ~ /\.ht {
deny all;
}
}
@Aidan265
Copy link

mine only says welcome to nginx

Copy link

ghost commented Jun 26, 2017

For people still getting the error "ln: target 'reload' is not a directory".
Use the command:
sudo ln -s /etc/nginx/sites-available/mirror.conf /etc/nginx/sites-enabled/mirror.conf && sudo service nginx reload

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment