Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Prepare env to use base_url | d6c009c120fce4df47a7651a94619142c8992d52 | Catalin(ux) M. BOIE | 2017-05-24 19:05:08 |
Use base_url function instead of the obsolete web_url variable | a821ee84f3dcf7294ee569dbc2da8b442cb60f29 | Catalin(ux) M. BOIE | 2017-05-24 19:03:49 |
Declare state as loaded only if I can really save it in cache | 10c2fcf9b78d6eb568e81ec34addfa2246d32618 | Catalin(ux) M. BOIE | 2017-05-24 18:53:25 |
Small texts fixes | 9f7998f23276d44435bd3319099d13bcb40c6b7e | Catalin(ux) M. BOIE | 2017-05-24 18:51:50 |
Improved http tests by using persistent connections | 9b77048af3f73f8bf30128d5b07a2bae28315d45 | Catalin(ux) M. BOIE | 2017-05-24 18:48:50 |
Big change allowing http and https to work in parallel | 3f1836953c50735c7860da1f951eb82a42a1940b | Catalin(ux) M. BOIE | 2017-05-24 15:19:39 |
Do not generate an internal error if the user has no e-mail | 6c355fe874750a9b5f454cbeeea28b5cf0f00236 | Catalin(ux) M. BOIE | 2017-05-06 10:55:41 |
Use rg_exec in tests to polute the output | df300f967ebfaa70499d5b599dcb1dfae02a89f3 | Catalin(ux) M. BOIE | 2017-04-29 22:56:05 |
Send errors on sterr instead of stdout for ssh commands | 006772c3e526e6cdbc92a52b452842bf8b46c4eb | Catalin(ux) M. BOIE | 2017-04-29 22:53:25 |
Added samples config files in the doc folder | 6dad3cb75cba2203fe2f091285a708822192f306 | Catalin(ux) M. BOIE | 2017-04-29 15:12:05 |
Added sample nginx config file | c7c1a7057ddf6fcca6e02ee63d46777bfa94c8bd | Catalin(ux) M. BOIE | 2017-04-29 14:46:56 |
Improved error reporting when php-fpm receives chunked encoding | fe158537256add633f02076e8359cd8f2267d54f | Catalin(ux) M. BOIE | 2017-04-29 14:46:18 |
Get rid of strage rewriting in we server config | 8f845f11e9edfa5291965f570a5c971056416b62 | Catalin(ux) M. BOIE | 2017-04-29 14:43:23 |
Do not allow anyone to activate the debug (rg_debug). | 0a296ec27e6988e91db8cac50e53345a8bce1c81 | Catalin(ux) M. BOIE | 2017-04-26 20:09:06 |
Forgot to add diff_too_big file | b6297ed622b8fd1562f6ab05b279290367612b89 | Catalin(ux) M. BOIE | 2017-04-26 20:08:29 |
Added a functional test for http.postBuffer problem | ff650d024cd5f82f796a225c204e156c9e1213f4 | Catalin(ux) M. BOIE | 2017-04-26 20:07:47 |
Added a 'Thanks' section | e7c9731dd32fe48befc58bf08044fd5649f523f4 | Catalin(ux) M. BOIE | 2017-04-26 20:06:49 |
Some big fixes for push over http | 56ebd277c71c50e40af9465cd3867dc885f054b9 | Catalin(ux) M. BOIE | 2017-04-26 20:00:53 |
Do not recursively set the rights - not needed | a9edce3101ad2450b67a575265827aa69efd5c63 | Catalin(ux) M. BOIE | 2017-04-17 07:16:01 |
Cosmetic changes | 4bb36da63972e7e152e4e476e84ed55baba02911 | Catalin(ux) M. BOIE | 2017-04-15 09:29:09 |
File | Lines added | Lines deleted |
---|---|---|
scripts/cron.php | 6 | 0 |
File scripts/cron.php changed (mode: 100644) (index 07df3f2..5d9d36e) | |||
... | ... | rg_lock_or_exit("cron.lock"); | |
31 | 31 | ||
32 | 32 | rg_log("Start (ver=$rocketgit_version)..."); | rg_log("Start (ver=$rocketgit_version)..."); |
33 | 33 | ||
34 | $hostname = rg_state_get($db, 'hostname'); | ||
35 | $http_allow = rg_state_get($db, 'http_allow'); | ||
36 | $https_allow = rg_state_get($db, 'https_allow'); | ||
37 | rg_base_url_build($hostname, $http_allow, $https_allow); | ||
38 | rg_log('DEBUG: base_url=' . rg_base_url()); | ||
39 | |||
34 | 40 | if (gmdate("Hi") == "0305") | if (gmdate("Hi") == "0305") |
35 | 41 | rg_clean_logs('/var/log/rocketgit'); | rg_clean_logs('/var/log/rocketgit'); |
36 | 42 |