我怎样才能恢复/ etc / nginx?

我错误地删除了我的Ubuntu 11.10 PC中的/ etc / nginx目录。 我如何恢复/ etc / nginx中的ngnix目录?

我做了这些命令:

  1. sudo su
  2. rm -rf /etc/nginx

我想再次得到/ etc / nginx目录。 怎么样?

我试过这个重新安装nginx:

  1. sudo apt-get update
  2. sudo apt-get upgrade
  3. sudo apt-get install nginx

那么它给出以下

 Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package nginx 

我怎样才能在Ubuntu 11.10上获得完整的nginx软件?

要重新创build它,首先使用purge卸载甚至删除configuration文件和logging:

 sudo apt-get purge nginx nginx-common nginx-full 

然后重新安装:

 sudo apt-get install nginx 

如果以上不适用于您,也可以尝试使用dpkg的–force-confmiss选项。

 sudo dpkg --force-confmiss -i /var/cache/apt/archives/nginx-common_*.deb