VPS侦探论坛

 找回密码
 注册
查看: 9177|回复: 5

修改nginx.conf 原始备份被删除了(急)

[复制链接]
发表于 2012-6-25 00:26:56 | 显示全部楼层 |阅读模式

疑问1:
修改nginx.conf 的时候不小心将原始备份给删除了,文件修改server段,现在无法还原了,
原始状态下 IP直接访问wwwroot文件夹 而不是直接访问网站

经过我修改以后,输入IP后直接打开目标网站,但是现在问题是 phpmyadmin 无法开打了  !!

目前nginx.conf server段为:
  1. server
  2. {
  3.   listen       80;
  4.   server_name x.com;
  5.   index index.html index.htm index.php;
  6.   root  /home/wwwroot;
复制代码
重启VPS后,IP依旧访问网站而不是 wwwroot文件夹 这样的话我依旧无法进入phpmyadmin 数据没备份所以不能重装系统!

疑问2 :这种状态下能不能将X.COM 修改成我的二级域名,使它访问wwwroot
然后IP继续访问到网站而不是wwwroot ?要如何修改?

我是菜鸟 求各位大侠指点!

[ 本帖最后由 阿龍 于 2012-6-25 00:28 编辑 ]
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
发表于 2012-6-25 04:35:22 | 显示全部楼层


呵呵,其实这个文件很容易记住的

user  www www;

worker_processes 2;                                       #nginx处理进程数

error_log  /home/wwwlogs/nginx_error.log  crit;      #生成nginx错误日志路径

pid        /usr/local/nginx/logs/nginx.pid;

worker_rlimit_nofile 51200;                             #每个nginx进程打开的最多文件描述符数目

events
        {
                use epoll;
                worker_connections 51200;               #每个nginx进程允许的最多连接数
        }

http
        {
                include       mime.types;
                default_type  application/octet-stream;

                server_names_hash_bucket_size 128;
                client_header_buffer_size 32k;
                large_client_header_buffers 4 32k;
                client_max_body_size 50m;

                sendfile on;
                tcp_nopush     on;
        server_tokens off;     #关闭nginx版本号
                keepalive_timeout 60;                        #keepalive 超时时间
                tcp_nodelay on;

                fastcgi_connect_timeout 300;
                fastcgi_send_timeout 300;
                fastcgi_read_timeout 300;
                fastcgi_buffer_size 64k;
                fastcgi_buffers 4 64k;
                fastcgi_busy_buffers_size 128k;
                fastcgi_temp_file_write_size 256k;

                gzip on;                                      #开启gzip压缩
                gzip_min_length  1k;
                gzip_buffers     4 16k;
                gzip_http_version 1.0;
                gzip_comp_level 2;
                gzip_types       text/plain application/x-javascript text/css application/xml;   #需要压缩的文件类型
                gzip_vary on;

                #日志格式
                log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';


server {
                listen       80 default;      #空主机头访问301跳转
                rewrite ^(.*) http://www.dianyingchina.com permanent;   
                 }

server
        {
                listen       80;
                server_name www.dianyingchina.com;              #绑定域名
                index index.html index.htm index.php;
                root  /home/wwwroot/;                                            #网站存放目录

                location ~ .*\.(php|php5)?$
                        {
                                try_files $uri =404;
                                fastcgi_pass  unix:/tmp/php-cgi.sock;
                                fastcgi_index index.php;
                                include fcgi.conf;
                        }

                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css)$
                        {
                        expires      30d;       #缓存时间
                        }

                        access_log   off;          #关闭日志
        }

include vhost/*.conf;    #加载vhost目录的其他虚拟主机配置文件
        }
Linux下Nginx+MySQL+PHP自动安装工具:https://lnmp.org
发表于 2012-6-25 04:40:48 | 显示全部楼层

再加一个phpmyadmin绑定 这样比较好管理,以下server可以新建
也可以加在ngin.conf中include vhost/*.conf;    #加载vhost目录的其他虚拟主机配置文件
的前面
server
        {
                listen       80;
                server_name phpmyadmin.abc.com;              #绑定域名
                index index.html index.htm index.php;
                root  /home/wwwroot/phpmyadmin;                        #网站存放目录

                location ~ .*\.(php|php5)?$
                        {
                                try_files $uri =404;
                                fastcgi_pass  unix:/tmp/php-cgi.sock;
                                fastcgi_index index.php;
                                include fcgi.conf;
                        }

                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css)$
                        {
                        expires      30d;       #缓存时间
                        }

                        access_log   off;          #关闭日志
        }
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
发表于 2012-6-25 09:58:37 | 显示全部楼层



自己把  phpmyadmin 搬到你网站目录下不就成了。  简单事情
Linux下Nginx+MySQL+PHP自动安装工具:https://lnmp.org
 楼主| 发表于 2012-6-25 10:05:12 | 显示全部楼层

谢谢 kuailerener

军哥运维代购:http://shop63846532.taobao.com/

 楼主| 发表于 2012-6-25 10:05:57 | 显示全部楼层

原帖由 id886 于 2012-6-25 09:58 发表
自己把  phpmyadmin 搬到你网站目录下不就成了。  简单事情

囧,原来可以移动啊 因为第一次用VPS 目录下的文件我都不敢动
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|VPS侦探 ( 鲁ICP备16040043号-1 )

GMT+8, 2024-11-17 19:01 , Processed in 0.027222 second(s), 16 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表