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; | |
} | |
} |
This comment has been minimized.
This comment has been minimized.
I've exactly the same error : "ln: target 'reload' is not a directory" |
This comment has been minimized.
This comment has been minimized.
I think you want to break that into two separate commands. That error message is because the symlink command, |
This comment has been minimized.
This comment has been minimized.
Hi, Trying to build a MirrorMirror and facing an issue. Hope you can help. Running I tried Any tips ? (for a "Not a software guy") |
This comment has been minimized.
This comment has been minimized.
Alright, I got nginx to run by editing and commenting out the IPv6 line and nginx runs now. |
This comment has been minimized.
This comment has been minimized.
We got everything to work, but now it just opens the "Welcome to nginx on Debian" page. Anyone know what to do after that? |
This comment has been minimized.
This comment has been minimized.
So update, I just had to change the permissions of the default file and delete it (leaving only mirror.conf) and it worked! |
This comment has been minimized.
This comment has been minimized.
mine only says welcome to nginx |
This comment has been minimized.
This comment has been minimized.
For people still getting the error "ln: target 'reload' is not a directory". |
This comment has been minimized.
I've pasted this into sudo nano /etc/nginx/sites-available/mirror.conf but, I am unable to activate configuration when inputting the below.
sudo ln -s /etc/nginx/sites-available/mirror.conf /etc/nginx/sites-enabled/mirror.conf sudo service nginx reload
Error reads: ln: target 'reload' is not a directory. Any idea what I'm doing wrong?