changes the port used inside gitea container to 22

This updates the gitea container so it uses port 22 for SSH instead of
`{{ gitea_port_ssh }}`. This seems to be correct as this port is
forwarded using `"{{ gitea_port_ssh }}:22"`, so it follows `SSH_PORT`
should be hard-set to 22 as well.
This commit is contained in:
Tim Simpson 2023-07-09 15:10:58 -05:00
parent f6b76424f1
commit eae3cf55f4

View file

@ -53,7 +53,7 @@
DB_PASSWD: "gitea"
RUN_MODE: "prod"
SSH_DOMAIN: "{{ ansible_nas_hostname }}"
SSH_PORT: "{{ gitea_port_ssh }}"
SSH_PORT: "22"
ROOT_URL: "http://{{ gitea_hostname }}:{{ gitea_port_http }}/"
USER_UID: "1000"
USER_GID: "1000"