Hi,
I installed Gitea in docker using instructions from homepage.
When I call Gitea from localhost:3000 everything works fine
I use conf file for nginx reverse proxy from homepage
Now when I call Gitea from https://git.mydomain, I'm landing on nginx server homepage.
Code
server {
listen 80;
server_name git.mydomain.com;
location / {
proxy_pass http://localhost:3000;
}
}
Obviously, I'm doing something wrong .
Any help. please?