nginx 缺少配置文件

2016-07-29 08:18:12 +08:00
 freaks

ubuntu server 14.04 安装了 nginx 后, 本想按照网上的教程配置 vhost , 奈何没有生成 sites-available 和 sites-enable 这两个文件夹, 看别人的教程好像都有这两个文件夹, 也卸了重装没卵用, 希望大神们能指点一二,小弟不胜感激了,谢谢!

6223 次点击
所在节点    NGINX
26 条回复
wzxjohn
2016-07-29 08:19:55 +08:00
1.11.3 ?你这是编译安装的吧。
freaks
2016-07-29 08:23:14 +08:00
@wzxjohn 不是,就是 apt-get install nginx
wolegequ
2016-07-29 08:23:36 +08:00
有 nginx.conf 就可以了吧
mml
2016-07-29 08:24:31 +08:00
你想要就自己创建就好,然后在 nginx.conf 里面加句 include 或者自己看下 nginx.conf 已经 include 了哪些目录
freaks
2016-07-29 08:27:57 +08:00
@wolegequ 主配置文件修改不太好吧,大多数教程都是从 site-[available|enable]里的 default 开始的
wolegequ
2016-07-29 08:29:57 +08:00
@freaks 大型应用没搞过,一直是直接写 nginx.conf
freaks
2016-07-29 08:33:00 +08:00
@mml

就包含了这一个目录,自己建的话要改好多,好像还要建软连接,试过了一次,没搞好
xqin
2016-07-29 08:37:26 +08:00
把你的配置放在 /etc/nginx/conf.d/ 目录下, 文件名为 xxx.conf 即可.

并不是所有的都按 site-(available|enable) 这种套路来的.
mml
2016-07-29 08:45:05 +08:00
@freaks 哪里需要改很多,不就复制一行改个路径的事情,

你就直接写 xxx.conf 扔 conf.d 下面就好。
freaks
2016-07-29 08:48:35 +08:00
@xqin @mml 我试一下咯
yalay
2016-07-29 09:06:20 +08:00
觉得你这个是不是自己改源了,官方源安装应该有 site-[available|enable]的啊?
yalay
2016-07-29 09:07:12 +08:00
看你现在的配置,把 xxx.conf 扔 conf.d 里就行
wzxjohn
2016-07-29 09:09:49 +08:00
14.04 Ubuntu 官方源 Nginx 绝对不是 1.11.3 。。。你改了 Nginx 的官方源吧。。。
freaks
2016-07-29 09:18:13 +08:00
@wzxjohn @yalay 的确改了源,不会是这个原因吧
nisekoi
2016-07-29 09:21:03 +08:00
你改了源,下到的 nginx 就不同了
wingoo
2016-07-29 09:23:56 +08:00
freaks
2016-07-29 09:25:15 +08:00
@nisekoi 这是我用的源,要把这两个字段删除,重新添加源吗?

```bash
$ echo "deb http://nginx.org/packages/mainline/ubuntu/ trusty nginx" >> /etc/apt/sources.list
$ echo "deb-src http://nginx.org/packages/mainline/ubuntu/ trusty nginx" >> /etc/apt/sources.list
```
stormyyd
2016-07-29 09:25:34 +08:00
你在 nginx.conf 里加上一句 include /etc/nginx/site-enable/*; 然后自己建好那两个文件夹就行了
freaks
2016-07-29 09:36:44 +08:00
@wingoo 感谢~ do 的文档确实不错,我现在是 nginx 和 PHP 还没结合起来, nginx 是搭建好了,但是访问 domain/info.php 不是 404 就是变成下载 info.php 这个文件
这是我的配置文件: /etc/nginx/conf.d/default.conf

```
server {
listen 80;
root /var/www/html;
server_name localhost;

#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;

location / {
index index.php index.html index.htm;
try_files $uri $uri/ =404;
}
#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/html/;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
}

# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
```
lslqtz
2016-07-29 10:29:37 +08:00
我都是直接在配置文件改 conf.d 都删掉的

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/295669

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX