Gogs
From Leo's Notes
Last edited on 15 June 2020, at 00:17.
Gogs is a light weight git server written in golang.
Reverse Proxy with Apache
Gogs will run on port 3000 by default. To serve gogs on the typical HTTP/HTTPS ports, make a virtual host on Apache serving a directory containing this .htaccess file.
DirectoryIndex disabled
RewriteEngine on
# Force https
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Proxy
RewriteRule ^(.*)$ http://127.0.0.1:3000/$1 [P,L]
The RewriteRule
directive can take a P
flag that enables proxying (Make sure that mod_rewrite
, mod_proxy
, and mod_proxy_http
is enabled)
|