|
@@ -8,7 +8,7 @@
|
8
|
8
|
#
|
9
|
9
|
# Freedom in the Cloud
|
10
|
10
|
#
|
11
|
|
-# Search engine application
|
|
11
|
+# Searx engine application
|
12
|
12
|
#
|
13
|
13
|
# License
|
14
|
14
|
# =======
|
|
@@ -28,40 +28,40 @@
|
28
|
28
|
# You should have received a copy of the GNU Affero General Public License
|
29
|
29
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
30
|
30
|
|
31
|
|
-SEARCH_ENGINE_REPO="https://github.com/asciimoo/searx"
|
32
|
|
-SEARCH_ENGINE_COMMIT='fee556c9904637051a9ba874ba7e71cd9f10789f'
|
33
|
|
-SEARCH_ENGINE_PATH=/etc
|
34
|
|
-SEARCH_ENGINE_ONION_PORT=8094
|
35
|
|
-SEARCH_ENGINE_ONION_HOSTNAME=
|
36
|
|
-SEARCH_ENGINE_LOGIN_TEXT=$"Search engine login"
|
37
|
|
-SEARCH_ENGINE_PASSWORD=
|
|
31
|
+SEARX_REPO="https://github.com/asciimoo/searx"
|
|
32
|
+SEARX_COMMIT='fee556c9904637051a9ba874ba7e71cd9f10789f'
|
|
33
|
+SEARX_PATH=/etc
|
|
34
|
+SEARX_ONION_PORT=8094
|
|
35
|
+SEARX_ONION_HOSTNAME=
|
|
36
|
+SEARX_LOGIN_TEXT=$"Search engine login"
|
|
37
|
+SEARX_PASSWORD=
|
38
|
38
|
|
39
|
|
-function backup_search_engine {
|
40
|
|
- echo ''
|
|
39
|
+function backup_searx {
|
|
40
|
+ echo ''
|
41
|
41
|
}
|
42
|
42
|
|
43
|
|
-function remove_search_engine {
|
44
|
|
- if ! grep -Fxq "install_search_engine" $COMPLETION_FILE; then
|
|
43
|
+function remove_searx {
|
|
44
|
+ if ! grep -Fxq "install_searx" $COMPLETION_FILE; then
|
45
|
45
|
return
|
46
|
46
|
fi
|
47
|
47
|
systemctl stop searx
|
48
|
48
|
systemctl disable searx
|
49
|
49
|
rm /etc/systemd/system/searx.service
|
50
|
50
|
function_check remove_onion_service
|
51
|
|
- remove_onion_service searx ${SEARCH_ENGINE_ONION_PORT}
|
|
51
|
+ remove_onion_service searx ${SEARX_ONION_PORT}
|
52
|
52
|
userdel -r searx
|
53
|
53
|
nginx_dissite searx
|
54
|
54
|
if [ -f /etc/nginx/sites-available/searx ]; then
|
55
|
55
|
rm /etc/nginx/sites-available/searx
|
56
|
56
|
fi
|
57
|
|
- if [ -d ${SEARCH_ENGINE_PATH}/searx ]; then
|
58
|
|
- rm -rf ${SEARCH_ENGINE_PATH}/searx
|
|
57
|
+ if [ -d ${SEARX_PATH}/searx ]; then
|
|
58
|
+ rm -rf ${SEARX_PATH}/searx
|
59
|
59
|
fi
|
60
|
|
- sed -i '/install_search_engine/d' $COMPLETION_FILE
|
|
60
|
+ sed -i '/install_searx/d' $COMPLETION_FILE
|
61
|
61
|
sed -i '/Search engine /d' $COMPLETION_FILE
|
62
|
62
|
}
|
63
|
63
|
|
64
|
|
-function install_search_engine {
|
|
64
|
+function install_searx {
|
65
|
65
|
# Note: currently socks5 outgoing proxies to other search engines does not work
|
66
|
66
|
if [[ $SYSTEM_TYPE == "$VARIANT_MESH" ]]; then
|
67
|
67
|
return
|
|
@@ -72,26 +72,26 @@ function install_search_engine {
|
72
|
72
|
fi
|
73
|
73
|
|
74
|
74
|
# update to a new commit if needed
|
75
|
|
- set_repo_commit $SEARCH_ENGINE_PATH/searx "Search engine commit" "$SEARCH_ENGINE_COMMIT" $SEARCH_ENGINE_REPO
|
|
75
|
+ set_repo_commit $SEARX_PATH/searx "Search engine commit" "$SEARX_COMMIT" $SEARX_REPO
|
76
|
76
|
if grep "Search engine key" $COMPLETION_FILE; then
|
77
|
|
- if [ -f ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml ]; then
|
|
77
|
+ if [ -f ${SEARX_PATH}/searx/searx/settings.yml ]; then
|
78
|
78
|
# note: this might change to a --tor option in a later version
|
79
|
|
- if ! grep 'socks5://127.0.0.1:9050' ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml; then
|
80
|
|
- echo 'outgoing: # communication with search engines' >> ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml
|
81
|
|
- echo ' proxies:' >> ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml
|
82
|
|
- echo ' http : socks5://127.0.0.1:9050' >> ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml
|
83
|
|
- echo ' https: socks5://127.0.0.1:9050' >> ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml
|
|
79
|
+ if ! grep 'socks5://127.0.0.1:9050' ${SEARX_PATH}/searx/searx/settings.yml; then
|
|
80
|
+ echo 'outgoing: # communication with search engines' >> ${SEARX_PATH}/searx/searx/settings.yml
|
|
81
|
+ echo ' proxies:' >> ${SEARX_PATH}/searx/searx/settings.yml
|
|
82
|
+ echo ' http : socks5://127.0.0.1:9050' >> ${SEARX_PATH}/searx/searx/settings.yml
|
|
83
|
+ echo ' https: socks5://127.0.0.1:9050' >> ${SEARX_PATH}/searx/searx/settings.yml
|
84
|
84
|
fi
|
85
|
|
- SEARCH_ENGINE_SECRET_KEY=$(cat $COMPLETION_FILE | grep "Search engine key" | awk -F ':' '{print $2}')
|
86
|
|
- sed -i "s|secret_key.*|secret_key : \"${SEARCH_ENGINE_SECRET_KEY}\"|g" ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml
|
|
85
|
+ SEARX_SECRET_KEY=$(cat $COMPLETION_FILE | grep "Search engine key" | awk -F ':' '{print $2}')
|
|
86
|
+ sed -i "s|secret_key.*|secret_key : \"${SEARX_SECRET_KEY}\"|g" ${SEARX_PATH}/searx/searx/settings.yml
|
87
|
87
|
if [ -f /var/lib/tor/hidden_service_searx/hostname ]; then
|
88
|
|
- SEARCH_ENGINE_ONION_HOSTNAME=$(echo /var/lib/tor/hidden_service_searx/hostname)
|
89
|
|
- sed -i '0,/RE/s/base_url.*/base_url : \"http://${SEARCH_ENGINE_ONION_HOSTNAME}\/' ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml
|
|
88
|
+ SEARX_ONION_HOSTNAME=$(echo /var/lib/tor/hidden_service_searx/hostname)
|
|
89
|
+ sed -i '0,/RE/s/base_url.*/base_url : \"http://${SEARX_ONION_HOSTNAME}\/' ${SEARX_PATH}/searx/searx/settings.yml
|
90
|
90
|
fi
|
91
|
91
|
fi
|
92
|
92
|
fi
|
93
|
93
|
|
94
|
|
- if grep -Fxq "install_search_engine" $COMPLETION_FILE; then
|
|
94
|
+ if grep -Fxq "install_searx" $COMPLETION_FILE; then
|
95
|
95
|
return
|
96
|
96
|
fi
|
97
|
97
|
|
|
@@ -130,31 +130,31 @@ function install_search_engine {
|
130
|
130
|
exit 63738
|
131
|
131
|
fi
|
132
|
132
|
|
133
|
|
- if [ ! -d $SEARCH_ENGINE_PATH ]; then
|
134
|
|
- mkdir -p $SEARCH_ENGINE_PATH
|
|
133
|
+ if [ ! -d $SEARX_PATH ]; then
|
|
134
|
+ mkdir -p $SEARX_PATH
|
135
|
135
|
fi
|
136
|
136
|
|
137
|
137
|
# clone the repo
|
138
|
|
- cd $SEARCH_ENGINE_PATH
|
|
138
|
+ cd $SEARX_PATH
|
139
|
139
|
function_check git_clone
|
140
|
|
- git_clone $SEARCH_ENGINE_REPO searx
|
141
|
|
- git checkout $SEARCH_ENGINE_COMMIT -b $SEARCH_ENGINE_COMMIT
|
|
140
|
+ git_clone $SEARX_REPO searx
|
|
141
|
+ git checkout $SEARX_COMMIT -b $SEARX_COMMIT
|
142
|
142
|
if ! grep -q "Search engine commit" $COMPLETION_FILE; then
|
143
|
|
- echo "Search engine commit:$SEARCH_ENGINE_COMMIT" >> $COMPLETION_FILE
|
|
143
|
+ echo "Search engine commit:$SEARX_COMMIT" >> $COMPLETION_FILE
|
144
|
144
|
else
|
145
|
|
- sed -i "s/Search engine commit.*/Search engine commit:$SEARCH_ENGINE_COMMIT/g" $COMPLETION_FILE
|
|
145
|
+ sed -i "s/Search engine commit.*/Search engine commit:$SEARX_COMMIT/g" $COMPLETION_FILE
|
146
|
146
|
fi
|
147
|
147
|
|
148
|
148
|
# create an onion service
|
149
|
|
- SEARCH_ENGINE_ONION_HOSTNAME=$(add_onion_service searx 80 ${SEARCH_ENGINE_ONION_PORT})
|
|
149
|
+ SEARX_ONION_HOSTNAME=$(add_onion_service searx 80 ${SEARX_ONION_PORT})
|
150
|
150
|
if ! grep "Search engine onion domain" $COMPLETION_FILE; then
|
151
|
|
- echo "Search engine onion domain:${SEARCH_ENGINE_ONION_HOSTNAME}" >> $COMPLETION_FILE
|
|
151
|
+ echo "Search engine onion domain:${SEARX_ONION_HOSTNAME}" >> $COMPLETION_FILE
|
152
|
152
|
else
|
153
|
|
- sed -i "s|Search engine onion domain.*|Search engine onion domain:${SEARCH_ENGINE_ONION_HOSTNAME}|g" $COMPLETION_FILE
|
|
153
|
+ sed -i "s|Search engine onion domain.*|Search engine onion domain:${SEARX_ONION_HOSTNAME}|g" $COMPLETION_FILE
|
154
|
154
|
fi
|
155
|
155
|
|
156
|
156
|
# an unprivileged user to run as
|
157
|
|
- useradd -d ${SEARCH_ENGINE_PATH}/searx/ -s /bin/false searx
|
|
157
|
+ useradd -d ${SEARX_PATH}/searx/ -s /bin/false searx
|
158
|
158
|
adduser searx debian-tor
|
159
|
159
|
|
160
|
160
|
# daemon
|
|
@@ -167,8 +167,8 @@ function install_search_engine {
|
167
|
167
|
echo 'Type=simple' >> /etc/systemd/system/searx.service
|
168
|
168
|
echo 'User=searx' >> /etc/systemd/system/searx.service
|
169
|
169
|
echo 'Group=searx' >> /etc/systemd/system/searx.service
|
170
|
|
- echo "WorkingDirectory=${SEARCH_ENGINE_PATH}/searx" >> /etc/systemd/system/searx.service
|
171
|
|
- echo "ExecStart=/usr/bin/python ${SEARCH_ENGINE_PATH}/searx/searx/webapp.py" >> /etc/systemd/system/searx.service
|
|
170
|
+ echo "WorkingDirectory=${SEARX_PATH}/searx" >> /etc/systemd/system/searx.service
|
|
171
|
+ echo "ExecStart=/usr/bin/python ${SEARX_PATH}/searx/searx/webapp.py" >> /etc/systemd/system/searx.service
|
172
|
172
|
echo 'Restart=always' >> /etc/systemd/system/searx.service
|
173
|
173
|
echo 'Environment="USER=searx"' >> /etc/systemd/system/searx.service
|
174
|
174
|
echo '' >> /etc/systemd/system/searx.service
|
|
@@ -177,9 +177,9 @@ function install_search_engine {
|
177
|
177
|
|
178
|
178
|
# create a webserver file
|
179
|
179
|
echo 'server {' > /etc/nginx/sites-available/searx
|
180
|
|
- echo " listen 127.0.0.1:${SEARCH_ENGINE_ONION_PORT} default_server;" >> /etc/nginx/sites-available/searx
|
181
|
|
- echo " root ${SEARCH_ENGINE_PATH}/searx;" >> /etc/nginx/sites-available/searx
|
182
|
|
- echo " server_name ${SEARCH_ENGINE_ONION_HOSTNAME};" >> /etc/nginx/sites-available/searx
|
|
180
|
+ echo " listen 127.0.0.1:${SEARX_ONION_PORT} default_server;" >> /etc/nginx/sites-available/searx
|
|
181
|
+ echo " root ${SEARX_PATH}/searx;" >> /etc/nginx/sites-available/searx
|
|
182
|
+ echo " server_name ${SEARX_ONION_HOSTNAME};" >> /etc/nginx/sites-available/searx
|
183
|
183
|
echo ' access_log off;' >> /etc/nginx/sites-available/searx
|
184
|
184
|
echo " error_log /var/log/searx_error.log $WEBSERVER_LOG_LEVEL;" >> /etc/nginx/sites-available/searx
|
185
|
185
|
echo '' >> /etc/nginx/sites-available/searx
|
|
@@ -198,7 +198,7 @@ function install_search_engine {
|
198
|
198
|
echo ' proxy_set_header X-Forwarded-Proto $scheme;' >> /etc/nginx/sites-available/searx
|
199
|
199
|
echo ' proxy_redirect off;' >> /etc/nginx/sites-available/searx
|
200
|
200
|
|
201
|
|
- echo " auth_basic \"${SEARCH_ENGINE_LOGIN_TEXT}\";" >> /etc/nginx/sites-available/searx
|
|
201
|
+ echo " auth_basic \"${SEARX_LOGIN_TEXT}\";" >> /etc/nginx/sites-available/searx
|
202
|
202
|
echo ' auth_basic_user_file /etc/nginx/.htpasswd;' >> /etc/nginx/sites-available/searx
|
203
|
203
|
echo ' }' >> /etc/nginx/sites-available/searx
|
204
|
204
|
echo '' >> /etc/nginx/sites-available/searx
|
|
@@ -216,25 +216,25 @@ function install_search_engine {
|
216
|
216
|
|
217
|
217
|
# replace the secret key
|
218
|
218
|
if ! grep "Search engine key" $COMPLETION_FILE; then
|
219
|
|
- SEARCH_ENGINE_SECRET_KEY="$(create_password 30)"
|
220
|
|
- echo "Search engine key:${SEARCH_ENGINE_SECRET_KEY}" >> $COMPLETION_FILE
|
|
219
|
+ SEARX_SECRET_KEY="$(create_password 30)"
|
|
220
|
+ echo "Search engine key:${SEARX_SECRET_KEY}" >> $COMPLETION_FILE
|
221
|
221
|
else
|
222
|
|
- SEARCH_ENGINE_SECRET_KEY=$(cat $COMPLETION_FILE | grep "Search engine key" | awk -F ':' '{print $2}')
|
|
222
|
+ SEARX_SECRET_KEY=$(cat $COMPLETION_FILE | grep "Search engine key" | awk -F ':' '{print $2}')
|
223
|
223
|
fi
|
224
|
|
- sed -i "s|secret_key.*|secret_key : \"${SEARCH_ENGINE_SECRET_KEY}\"|g" ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml
|
225
|
|
- sed -i "s|secret_key.*|secret_key : \"${SEARCH_ENGINE_SECRET_KEY}\"|g" ${SEARCH_ENGINE_PATH}/searx/searx/settings_robot.yml
|
226
|
|
- sed -i '0,/RE/s/base_url.*/base_url : \"http://${SEARCH_ENGINE_ONION_HOSTNAME}\/' ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml
|
227
|
|
- sed -i '0,/RE/s/base_url.*/base_url : \"http://${SEARCH_ENGINE_ONION_HOSTNAME}\/' ${SEARCH_ENGINE_PATH}/searx/searx/settings_robot.yml
|
|
224
|
+ sed -i "s|secret_key.*|secret_key : \"${SEARX_SECRET_KEY}\"|g" ${SEARX_PATH}/searx/searx/settings.yml
|
|
225
|
+ sed -i "s|secret_key.*|secret_key : \"${SEARX_SECRET_KEY}\"|g" ${SEARX_PATH}/searx/searx/settings_robot.yml
|
|
226
|
+ sed -i '0,/RE/s/base_url.*/base_url : \"http://${SEARX_ONION_HOSTNAME}\/' ${SEARX_PATH}/searx/searx/settings.yml
|
|
227
|
+ sed -i '0,/RE/s/base_url.*/base_url : \"http://${SEARX_ONION_HOSTNAME}\/' ${SEARX_PATH}/searx/searx/settings_robot.yml
|
228
|
228
|
|
229
|
229
|
# note: this might change to a --tor option in a later version
|
230
|
|
- if ! grep 'socks5://127.0.0.1:9050' ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml; then
|
231
|
|
- echo 'outgoing: # communication with search engines' >> ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml
|
232
|
|
- echo ' proxies:' >> ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml
|
233
|
|
- echo ' http : socks5://127.0.0.1:9050' >> ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml
|
234
|
|
- echo ' https: socks5://127.0.0.1:9050' >> ${SEARCH_ENGINE_PATH}/searx/searx/settings.yml
|
|
230
|
+ if ! grep 'socks5://127.0.0.1:9050' ${SEARX_PATH}/searx/searx/settings.yml; then
|
|
231
|
+ echo 'outgoing: # communication with search engines' >> ${SEARX_PATH}/searx/searx/settings.yml
|
|
232
|
+ echo ' proxies:' >> ${SEARX_PATH}/searx/searx/settings.yml
|
|
233
|
+ echo ' http : socks5://127.0.0.1:9050' >> ${SEARX_PATH}/searx/searx/settings.yml
|
|
234
|
+ echo ' https: socks5://127.0.0.1:9050' >> ${SEARX_PATH}/searx/searx/settings.yml
|
235
|
235
|
fi
|
236
|
236
|
|
237
|
|
- chown -R searx:searx ${SEARCH_ENGINE_PATH}/searx
|
|
237
|
+ chown -R searx:searx ${SEARX_PATH}/searx
|
238
|
238
|
|
239
|
239
|
# enable the site
|
240
|
240
|
nginx_ensite searx
|
|
@@ -249,25 +249,25 @@ function install_search_engine {
|
249
|
249
|
systemctl start searx.service
|
250
|
250
|
|
251
|
251
|
if ! grep -q "Your search engine password is" /home/$MY_USERNAME/README; then
|
252
|
|
- if [ ${#SEARCH_ENGINE_PASSWORD} -lt 8 ]; then
|
|
252
|
+ if [ ${#SEARX_PASSWORD} -lt 8 ]; then
|
253
|
253
|
if [ -f $IMAGE_PASSWORD_FILE ]; then
|
254
|
|
- SEARCH_ENGINE_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
|
|
254
|
+ SEARX_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
|
255
|
255
|
else
|
256
|
|
- SEARCH_ENGINE_PASSWORD="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
|
|
256
|
+ SEARX_PASSWORD="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
|
257
|
257
|
fi
|
258
|
258
|
fi
|
259
|
|
- echo "$SEARCH_ENGINE_PASSWORD" | htpasswd -i -s -c /etc/nginx/.htpasswd $MY_USERNAME
|
|
259
|
+ echo "$SEARX_PASSWORD" | htpasswd -i -s -c /etc/nginx/.htpasswd $MY_USERNAME
|
260
|
260
|
echo '' >> /home/$MY_USERNAME/README
|
261
|
261
|
echo '' >> /home/$MY_USERNAME/README
|
262
|
262
|
echo $'Search Engine' >> /home/$MY_USERNAME/README
|
263
|
263
|
echo '=============' >> /home/$MY_USERNAME/README
|
264
|
|
- echo $"Search engine onion domain: ${SEARCH_ENGINE_ONION_HOSTNAME}" >> /home/$MY_USERNAME/README
|
265
|
|
- echo $"Your search engine password is: $SEARCH_ENGINE_PASSWORD" >> /home/$MY_USERNAME/README
|
|
264
|
+ echo $"Search engine onion domain: ${SEARX_ONION_HOSTNAME}" >> /home/$MY_USERNAME/README
|
|
265
|
+ echo $"Your search engine password is: $SEARX_PASSWORD" >> /home/$MY_USERNAME/README
|
266
|
266
|
chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/README
|
267
|
267
|
chmod 600 /home/$MY_USERNAME/README
|
268
|
268
|
fi
|
269
|
269
|
|
270
|
|
- echo 'install_search_engine' >> $COMPLETION_FILE
|
|
270
|
+ echo 'install_searx' >> $COMPLETION_FILE
|
271
|
271
|
}
|
272
|
272
|
|
273
|
273
|
# NOTE: deliberately no exit 0
|