Ubuntu 17.10 带有 Gitlab 和 Nginx(哈!)

Ubuntu 17.10 带有 Gitlab 和 Nginx(哈!)

Gitlab 安装立即生效,但“他们”希望该服务器也能为其他网页(wiki 和其他内容)提供服务,所以我不得不从 Gitlab 中解绑 nginx 并进行完整安装。

据我所见(https://www.linode.com/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites)我需要安装乘客,但是,哦,令人惊讶的是,看看如果你尝试会发生什么:

apt-get install nginx-common
{..}
The following packages have unmet dependencies:
libnginx-mod-http-passenger : Depends: nginx-common (= 1.10.3-1ubuntu3.1) but 1.12.1-0ubuntu2 is to be installed
E: Unable to correct problems, you have held broken packages.

所以基本上它没有完成乘客安装,我无法继续:S

有什么好主意吗?

答案1

因此,如果有人到达那里:

sudo apt-get install nginx-extras
sudo apt-get install nginx-common 
sudo apt-get install passenger

就这样吧。希望这对你有帮助。

相关内容