
This will hardcoed "/gitea" subpath in root server to the 3001 port.. 
change or add more to tuneup

This configuration will NOT hiyacked all the webserver root to gitea..
will use the subpath "/gitea" url from the configured domain, see ROOT_URL:

Update /etc/gitea/conf/app.ini:

```
[server]
PROTOCOL = unix
DOMAIN = git.giteavenenux.org
ROOT_URL = http://git.giteavenenux.org/gitea
HTTP_ADDR = 127.0.0.1
HTTP_PORT = 3001
```

Create: /etc/apache2/conf.d/gitea.conf

```
ProxyPass /gitea http://0.0.0.0:3001
ProxyPassReverse /gitea http://0.0.0.0:3001

<Location /gitea>

    # Servers to proxy the connection, or;
    ProxyPass http://0.0.0.0:3001
    ProxyPassReverse http://0.0.0.0:3001

</Location> 
```
