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;
}
}
@brenzenb
Copy link

brenzenb commented May 17, 2016

I think you want to break that into two separate commands.
sudo ln -s /etc/nginx/sites-available/mirror.conf /etc/nginx/sites-enabled/mirror.conf
sudo service nginx reload

That error message is because the symlink command, ln -s, is trying to create a symlink to reload, which is not a command. You accidentally created symlinks for the sudo, service, and nginx commands/utilities.

@Anool
Copy link

Anool commented Jun 3, 2016

Hi, Trying to build a MirrorMirror and facing an issue. Hope you can help.

Running
sudo service nginx reload
results in
[FAIL] Reloading nginx configuration: nginx failed!

I tried
sudo nginx -c /etc/nginx/nginx.conf -t
and it shows this
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: [emerg] socket() [::]:80 failed (97: Address family not supported by protocol)
nginx: configuration file /etc/nginx/nginx.conf test failed

Any tips ? (for a "Not a software guy")

@Anool
Copy link

Anool commented Jun 4, 2016

Alright, I got nginx to run by editing
/etc/nginx/sites-available/default

and commenting out the IPv6 line
listen [::]:80 default_server;

and nginx runs now.

@Maxman13
Copy link

Maxman13 commented Apr 7, 2017

We got everything to work, but now it just opens the "Welcome to nginx on Debian" page. Anyone know what to do after that?

@Maxman13
Copy link

Maxman13 commented Apr 8, 2017

So update, I just had to change the permissions of the default file and delete it (leaving only mirror.conf) and it worked!

@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