List of commits:
Subject Hash Author Date (UTC)
/run/rocketgit-fpm/ -> /run to not create the dir 13ff6e91698260ba5a41591275fa915e33baebc9 Catalin(ux) M. BOIE 2019-10-01 16:08:43
Compute repo disk size only for not deleted repos 551d1798802853e5af1e12a1908cc10fbc432d17 Catalin(ux) M. BOIE 2019-09-30 22:08:27
git_log2listing big changes e91fdef76511d586af30a3aa4b44273a1203bd36 Catalin(ux) M. BOIE 2019-09-30 19:54:38
typo 0ef09cd6e02fa3bf79e0a26b887badc103b03d87 Catalin(ux) M. BOIE 2019-09-30 19:53:56
Some more error testing for http_confirm test 1f36b1f55465c57e935b830e456d8f8044ec17da Catalin(ux) M. BOIE 2019-09-30 19:53:38
fixes: ignore some errors 584eef4cbfb5427eaae34d72ea99b94ec4da29a4 Catalin(ux) M. BOIE 2019-09-30 19:52:45
cache: functional test for timeout acaeca2fbceb797b0fb58f1c05bdd8d1f9025f25 Catalin(ux) M. BOIE 2019-09-30 19:51:35
Fixed rg_git_merge because it was broken 797a976065420525f9f2c6a096ae306ffa5ed78d Catalin(ux) M. BOIE 2019-09-30 19:50:41
Disable GC when serving requests from web/fetch/push; we will do it from cron fd16c96f5f0a6d24e0c6aaf45c5a02833579667a Catalin(ux) M. BOIE 2019-09-30 19:48:49
git: fixes display of filenames which are not UTF-8 valid 83b6f641a547a4652aad6e921486d2b91cffdb9f Catalin(ux) M. BOIE 2019-09-30 19:46:07
rg_change_pass missed a log file name e49fc9f8c896414098713e418205d97b2e594c1f Catalin(ux) M. BOIE 2019-09-22 09:32:59
totp: remove a double DELETE sql query and invalidate cache after we remove the data from db ff22d7ddabc1c64a37fcb1749f54321974b0f8d3 Catalin(ux) M. BOIE 2019-09-22 09:28:30
selinux: added map (for packs) 911b2cffa2d754d466a31693af71d6c58639dd9d Catalin(ux) M. BOIE 2019-09-22 06:58:44
Do not allow : char in user name 460b846752c03368990b60efbbf12f74e229bda5 Catalin(ux) M. BOIE 2019-09-22 05:58:37
Do not allow : char in repo name b072ba3cd6c46e2ee7d07dc5890c8671d8462a09 Catalin(ux) M. BOIE 2019-09-22 05:56:56
Fix an XSS in repo description ee2d11f0b16b436d9e64a0c5ac57361d25e098e1 Catalin(ux) M. BOIE 2019-09-22 05:45:11
Do not allow a user name to start with minus; strlen -> mb_strlen 755f2a47e99dc3a56cee90b424ee8a9bd84236f8 Catalin(ux) M. BOIE 2019-09-22 05:07:01
Do not allow a repo to start with minus; strlen -> mb_strlen 8ac45126805015c868ae8054ea328dc5a16cf31c Catalin(ux) M. BOIE 2019-09-22 05:06:41
Limit the desciption of the project to 100 chars to be able to pack more repos per page 1d2714726347b1eb9f113bd9c4d65d301d6502bd Catalin(ux) M. BOIE 2019-09-22 04:59:11
Changed CIF 47e6a7b3939898729d4344b8e3a01ac0dbd3e3b1 Catalin(ux) M. BOIE 2019-09-22 04:42:59
Commit 13ff6e91698260ba5a41591275fa915e33baebc9 - /run/rocketgit-fpm/ -> /run to not create the dir
Author: Catalin(ux) M. BOIE
Author date (UTC): 2019-10-01 16:08
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2019-10-01 16:08
Parent(s): 551d1798802853e5af1e12a1908cc10fbc432d17
Signer:
Signing key:
Signing status: N
Tree: 911eb75ebba6737fea4777043a70893d6693c342
File Lines added Lines deleted
samples/nginx.conf 2 2
samples/php-fpm.conf 1 1
samples/pool.conf 1 1
samples/rg.conf 2 2
samples/rocketgit-fpm.service 1 3
File samples/nginx.conf changed (mode: 100644) (index 4264d14..1636686)
... ... server {
56 56 include /etc/nginx/fastcgi_params; include /etc/nginx/fastcgi_params;
57 57 fastcgi_param SCRIPT_FILENAME $document_root/index.php$fastcgi_script_name; fastcgi_param SCRIPT_FILENAME $document_root/index.php$fastcgi_script_name;
58 58
59 fastcgi_pass unix:/run/rocketgit-fpm/rocketgit.sock;
59 fastcgi_pass unix:/run/rocketgit.sock;
60 60 } }
61 61 } }
62 62
 
... ... server {
120 120 include /etc/nginx/fastcgi_params; include /etc/nginx/fastcgi_params;
121 121 fastcgi_param SCRIPT_FILENAME $document_root/index.php$fastcgi_script_name; fastcgi_param SCRIPT_FILENAME $document_root/index.php$fastcgi_script_name;
122 122
123 fastcgi_pass unix:/run/rocketgit-fpm/rocketgit.sock;
123 fastcgi_pass unix:/run/rocketgit.sock;
124 124 } }
125 125
126 126 ssl_certificate /etc/pki/tls/certs/localhost.crt; ssl_certificate /etc/pki/tls/certs/localhost.crt;
File samples/php-fpm.conf changed (mode: 100644) (index 4f8492e..aa3040a)
... ... include=/etc/rocketgit/pool.conf
17 17 [global] [global]
18 18 ; Pid file ; Pid file
19 19 ; Default Value: none ; Default Value: none
20 pid = /run/rocketgit-fpm/rocketgit.pid
20 pid = /run/rocketgit.pid
21 21
22 22 ; Error log file ; Error log file
23 23 ; If it's set to "syslog", log is sent to syslogd instead of being written ; If it's set to "syslog", log is sent to syslogd instead of being written
File samples/pool.conf changed (mode: 100644) (index 84d98cf..d0dde67)
... ... group = rocketgit
36 36 ; (IPv6 and IPv4-mapped) on a specific port; ; (IPv6 and IPv4-mapped) on a specific port;
37 37 ; '/path/to/unix/socket' - to listen on a unix socket. ; '/path/to/unix/socket' - to listen on a unix socket.
38 38 ; Note: This value is mandatory. ; Note: This value is mandatory.
39 listen = /run/rocketgit-fpm/rocketgit.sock
39 listen = /run/rocketgit.sock
40 40
41 41 ; Set listen(2) backlog. ; Set listen(2) backlog.
42 42 ; Default Value: 65535 ; Default Value: 65535
File samples/rg.conf changed (mode: 100644) (index 11a6860..29509de)
65 65 DeflateBufferSize 81920 DeflateBufferSize 81920
66 66
67 67 <FilesMatch "\.php$"> <FilesMatch "\.php$">
68 SetHandler "proxy:unix:/run/rocketgit-fpm/rocketgit.sock|fcgi://localhost"
68 SetHandler "proxy:unix:/run/rocketgit.sock|fcgi://localhost"
69 69 </FilesMatch> </FilesMatch>
70 70 </VirtualHost> </VirtualHost>
71 71
 
151 151 DeflateBufferSize 81920 DeflateBufferSize 81920
152 152
153 153 <FilesMatch "\.php$"> <FilesMatch "\.php$">
154 SetHandler "proxy:unix:/run/rocketgit-fpm/rocketgit.sock|fcgi://localhost"
154 SetHandler "proxy:unix:/run/rocketgit.sock|fcgi://localhost"
155 155 </FilesMatch> </FilesMatch>
156 156 </VirtualHost> </VirtualHost>
File samples/rocketgit-fpm.service changed (mode: 100644) (index 49fb287..bf09694)
... ... After=syslog.target network.target
12 12
13 13 [Service] [Service]
14 14 Type=notify Type=notify
15 PIDFile=/run/rocketgit-fpm/rocketgit.pid
15 PIDFile=/run/rocketgit.pid
16 16 ExecStart=/usr/sbin/php-fpm --fpm-config /etc/rocketgit/php-fpm.conf ExecStart=/usr/sbin/php-fpm --fpm-config /etc/rocketgit/php-fpm.conf
17 17 ExecReload=/bin/kill -USR2 $MAINPID ExecReload=/bin/kill -USR2 $MAINPID
18 18 PrivateTmp=true PrivateTmp=true
19 RuntimeDirectory=rocketgit-fpm
20 RuntimeDirectoryMode=0755
21 19 #Seems I get a denial #Seems I get a denial
22 20 #NoNewPrivileges=yes #NoNewPrivileges=yes
23 21 Restart=always Restart=always
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/catalinux/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/catalinux/rocketgit

Clone this repository using git:
git clone git://git.rocketgit.com/user/catalinux/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main