Gitea A Repository Management App on easyengine?

Has anyone installed Gitea A Repository Management App on easyengine ? Please share your experience. https://gitea.io/en-us/

Hello,

yes I was running git.virtubox.net with EE and it’s now running with WordOps (EEv3 fork).
my nginx vhost :

upstream gitea {
        server 127.0.0.1:3000;
}


server {
    server_name git.virtubox.net;
    
    access_log /var/log/nginx/git.virtubox.net.access.log rt_cache;
    error_log /var/log/nginx/git.virtubox.net.error.log;
    
    root /var/www/git.virtubox.net/htdocs;
    add_header Strict-Transport-Security "max-age=31536000; preload";
    add_header X-Robots-Tag "noindex";
    
    location / {
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header X-Nginx-Proxy true;
        proxy_pass http://gitea;
        proxy_http_version 1.1;
        include proxy_params;
        proxy_redirect off;
    }
    
    location = /robots.txt {
        return 200 "User-agent: *\nDisallow: /\n";
    }
    
    include /var/www/git.virtubox.net/conf/nginx/*.conf;
}
1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.