workaround issues with armhf
systems/ene.scm
29 | 29 | ||
30 | 30 | (use-modules (gnu packages libunwind)) | |
31 | 31 | (use-modules (gnu packages mail)) | |
32 | + | (use-modules (gnu packages tor)) | |
32 | 33 | (use-modules (gnu packages web)) | |
33 | 34 | (use-modules (guix packages)) | |
34 | 35 | (use-modules (guix utils)) | |
… | |||
76 | 77 | (baud-rate "115200") | |
77 | 78 | (term "vt100") | |
78 | 79 | (tty "ttyS0"))) | |
79 | - | (service tor-service-type) | |
80 | + | (service tor-service-type | |
81 | + | (tor-configuration | |
82 | + | (tor (package | |
83 | + | (inherit tor) | |
84 | + | (arguments | |
85 | + | `(#:tests? #f | |
86 | + | ,@(package-arguments tor))))))) | |
80 | 87 | (tor-hidden-service "mail" | |
81 | 88 | '((25 "127.0.0.1:25") | |
82 | 89 | (143 "127.0.0.1:143") | |
… | |||
99 | 106 | ("git.lepiller.eu") | |
100 | 107 | ("social.lepiller.eu"))) | |
101 | 108 | (service nginx-service-type) | |
102 | - | (service php-fpm-service-type) | |
109 | + | (service php-fpm-service-type | |
110 | + | (php-fpm-configuration | |
111 | + | ;; TODO: remove after guix doesn't complain about duplicate | |
112 | + | ;; groups. | |
113 | + | (group "php-fpm2"))) | |
103 | 114 | (service fcgiwrap-service-type | |
104 | 115 | (fcgiwrap-configuration | |
105 | 116 | (group "git"))) | |
… | |||
165 | 176 | (body | |
166 | 177 | (list | |
167 | 178 | "root /srv/http/git/public;")))) | |
168 | - | '("/css" "/images" "~* .*/manual/.*" "= /" | |
179 | + | '("/css" "/js" "/images" "~* .*/manual/.*" "= /" | |
169 | 180 | "= /index.html"))))))) | |
170 | 181 | (service static-web-site-service-type | |
171 | 182 | (static-web-site-configuration |