nginx-新手求救Nginx 配置问题

问题描述

新手求救Nginx 配置问题

新手捣鼓Nginx,在Debian7环境下源码安装 配置时只是改变了 安装目录 、配置文件目录
和新增了ssl,当我运行nginx时出现以下错误:
nginx: [emerg] unexpected end of file, expecting ";" or "}" in /etc/mime.types:832

我未曾修改过任何文件 请问这个问题我该如何解决?

解决方案

问题已经解决, Debian7系统自带的/etc/mime.types替换为Nginx的conf目录下的mime.types即可

解决方案二:

Nginx配置的问题
Nginx配置的问题
nginx--配置问题

解决方案三:

用nginx -t 命令测试一下配置文件,看有没有语法错误,其次你是否用root权限执行的nginx。

解决方案四:

首先谢谢oyljerry , 我是用root权限执行的 , nginx -t 测试提示就是我在提问中提到的

解决方案五:

我下载的是最新版本1.9.3

解决方案六:

问题已经解决, Debian7系统自带的/etc/mime.types替换为Nginx的conf目录下的mime.types即可

时间: 2024-10-18 09:26:47

nginx-新手求救Nginx 配置问题的相关文章

java-JAVA新手求救!从文件中读取出的歌词在TextArea中显示不全!

问题描述 JAVA新手求救!从文件中读取出的歌词在TextArea中显示不全! RT,最近在写一个简单的MP3播放器,由于是新手,所以代码比较屎,大神不要嘲笑.. 从文件中(.lrc格式)中读取出的歌词可以在控制台完美输出,但是在Textarea中 是残缺状态,想知道原因及解决办法 以下是读取歌词并显示的代码: int lastTime = 0; int minute, second, milliSecond, total; String str = "", time, words;

【学习笔记】启动Nginx、查看nginx进程、查看nginx服务主进程的方式、Nginx服务可接受的信号、nginx帮助命令、Nginx平滑重启、Nginx服务器的升级

 1.启动nginx的方式: cd /usr/local/nginx ls ./nginx -c nginx.conf 2.查看nginx的进程方式: [root@localhost nginx]# ps –ef | grep nginx [root@localhost nginx]# ps -ef | grep nginx root     21094     1  0 07:52 ?        00:00:00 nginx: master process ./nginx -c ngi

visual studio-vs窗体中新添的数据保存不了,新手求救

问题描述 vs窗体中新添的数据保存不了,新手求救 10C 是代码出错了吗,请大神指点 解决方案 bkind这个是单向传入你的窗体的.当然没用.你可以在你的if里面手工把fedit的控件值赋给bkind的字段,再保存.

这个哪里出错了,新手求救大神

问题描述 这个哪里出错了,新手求救大神 #include #include using namespace std; class Student { int no; string name; float score; Student *next; Student *per; public: Student(); static string school; Student * find(int i_no); void erase(); int add(Student * i_newStudent)

Nginx content cache Nginx内容缓存,中英翻译对照

Nginx content cache Nginx内容缓存 This chapter describes how to enable and configure caching responses received from proxied servers. When caching is enabled NGINX saves responses in the cache on the disk and uses them to respond to clients without proxy

Nginx配置文件(nginx.conf)配置详解(总结)_nginx

现在经常碰到有新用户问一些很基本的问题,最近整理了一下,Nginx的配置文件nginx.conf配置详解如下: user nginx nginx ; Nginx用户及组:用户 组.window下不指定 worker_processes 8; 工作进程:数目.根据硬件调整,通常等于CPU数量或者2倍于CPU. error_log logs/error.log; error_log logs/error.log notice; error_log logs/error.log info; 错误日志:

nginx 新手,请教点配置问题。

问题描述 server{listen80;server_namefanjianlu.com;server_namewww.fanjianlu.com;root/home/webfile;indexindex.htmlindex.htm;location~.*.(htm|html)${root/home/webfile;#setresourcefileexpires1h;}location~.*.(js|css)${root/home/webfile;#setresourcefileexpires

nginx sendfile:使用Nginx的X-Sendfile机制提升PHP文件下载性能

很多时候用户需要从网站下载文件,如果文件是可以通过一个固定链接公开获取的,那么我们只需将文件存放到 webroot 下的目录里就好.但大多数情况下,我们需要做权限控制,例如下载 PDF 账单,又例如下载网盘里的档案.这时,我们通常借助于脚本代码来实现,而这无疑会增加服务器的负担.例如下面的代码:<?php    // 用户身份认证,若验证失败跳转    authenticate();    // 获取需要下载的文件,若文件不存在跳转    $file = determine_file();   

nginx反向代理-nginx+tomcat集群下的压力测试

问题描述 nginx+tomcat集群下的压力测试 我现在在单机下尝试模拟nginx+tomcat集群的配置,开了3台虚拟机,1台作nginx服务器另外两台作tomcat服务器. tomcat下的也设置了maxThreads和timeOut的值. nginx配的是将所有请求全部转发给后端的两台tomcat. 最后再装了nginx的虚拟机上用ab进行压力测试,在 -n 10000 -c 1500的时候 去测试192.168.171.134:18082没有问题,而测用127.0.0.1测nginx的