我已经跟随该网站http://raspberrypihelp.net/tutorials/24-raspberry-pi-
webserver
在我的Raspberry Pi上设置HTTP服务器nginx并尝试设置一个站点调用 **example.com**
。但是当我跑步时sudo service nginx restart
,它说
重新启动nginx:nginx:/etc/nginx/sites-enabled/example.com中的[emerg]未知指令“”:3
这是 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;
}
}
我只是按照步骤操作,但无法成功运行。
我有一个同样的问题,那就是我从网络上复制/粘贴了配置代码,并EOL
在那里粘贴了一些脏(行尾)字符。
编辑器没有显示它们,而是nginx
将它们视为指令。
只是删除每个,EOL
然后再次添加。
在我的Nginx服务器上,为了节省时间,我做了etc/nginx/include.conf,并把这一行放在etc/nginx/sites-可用/site1.conf: include.conf的内容: 测试 conf 文件时,会出现以下错误:/etc/nginx/include.conf:1 中出现 [emerg] 未知指令“if” 当我将if语句直接放在etc/nginx/sites avail
我最近开始迁移到Docker1.9和Docker-Compose1.5的网络功能,以取代使用链接。 到目前为止,使用链接,nginx通过docker-compose连接到我的php5-fpm fastcgi服务器(位于一个组中的不同服务器上)没有任何问题。最近,当我运行时,我的php-fpm、mongo和nginx容器启动了,但是nginx却以中的上游“waapi_php_1”中找不到主机而立即退
突然,我得到了下面的nginx错误 如果我跑了 我一无所获。端口 80 上没有任何内容 然后我运行以下命令: 我被难倒了。我该如何调试这个? 我在端口8070上使用代理传递的uwsgi。uwsgi正在运行。Nginx不是。我正在使用ubuntu 12.4 下面是我的nginx conf文件的相关部分 这是我如何在ubuntu 12.04上安装ngin x
本文向大家介绍Nginx Location 指令简明指南,包括了Nginx Location 指令简明指南的使用技巧和注意事项,需要的朋友参考一下 Nginx 中的 Location 指令 是NginxHttpCoreModule中重要指令。Location 指令比较简单,但却是配置 Nginx 过程中不得不去了解的。 Location 指令,是用来为匹配的 URI 进行配置,URI 即语法中的"
本文向大家介绍nginx中的listen指令实例解析,包括了nginx中的listen指令实例解析的使用技巧和注意事项,需要的朋友参考一下 剧情回顾 上一篇文章我们分析了location指令的解析过程,简单的回顾一下这个内容:每个location对应一个ngx_http_core_loc_conf_t结构体,所有的location通过一个双向队列连接在一起。数据结构比较复杂。 listen指令 n
我正在使用nginx和rtmp模块来流式传输实时hls和mpeg-dash。这是我在nginx. conf中的rtmp命令 但它不是在玩。ffmpeg命令似乎根本没有运行。hls和dash文件夹是空的。有人能帮我吗?