我已关注此网站http://raspberrypihelp.net/tutorials/24-raspberry-pi-webserver在我的Raspberry Pi上设置HTTP服务器nginx并尝试设置网站呼叫 example.com 。但当我运行sudo service nginx restart
时,它说
在/etc/nginx/sites-enabled/example.com:3重新启动nginx:nginx:[emerg] unknown指令“”
以下是 example.com 中的代码。
server {
server_name example.com 192.168.1.88;
access_log /srv/www/example.com/logs/access.log;
error_log /srv/www/example.com/logs/error.log;
root /srv/www/example.com/public/;
location / {
index index.php index.html index.htm;
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /srv/www/example.com/public$fastcgi_script_name;
}
location /phpmyadmin {
root /usr/share/;
index index.php index.html index.htm;
location ~ ^/phpmyadmin/(.+\.php)$ {
try_files $uri =404;
root /usr/share/;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
root /usr/share/;
}
}
location /phpMyAdmin {
rewrite ^/* /phpmyadmin last;
}
}
我使用/usr/sbin/nginx -t -v
来检查我是否在使用nginx / 1.2.1。我可以访问http:/127.0.0.1查看默认站点(/usr/share/nginx/www/index.html),这意味着它可以运行文件 / etc / nginx / sites-enabled / default 。我只是按照步骤,但它无法成功运行。
答案 0 :(得分:0)
尝试添加此行:
server {
listen 192.168.1.88:80; // Add this "listen" with port 80
server_name example.com www.example.com;
# Rest of code
}