3

次のエラーがあります。

ssh: connect to host git.limeworks.eu port 22: Connection refused
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

現在、ローカルの .ssh/config ファイルにある構成は次のとおりです。

host limeworks
    user git
    port 6565
    hostname git.limeworks.eu;

およびリモートの gitlab.yml で:

  gitlab:
    ## Web server settings
    host: git.limeworks.eu
    port: 6565

また、nginx のセットアップ (/sites-enabled/gitlab) は次のとおりです。

server {
  listen 80;         # e.g., listen 192.168.1.1:80; In most cases *:80 is a good idea
  server_name git.limeworks.eu;     # e.g., server_name source.example.com;
...

各変更後に gitlab および nginx サービスを再起動しましたが、何も機能しません!

編集:ここで注目に値するのは、リモートサーバーの sshd_config からのいくつかのスニペットです

Port 9595
AllowUsers rrw git
4

2 に答える 2