<feed xmlns='http://www.w3.org/2005/Atom'>
<title>4get/docker/docker-entrypoint.sh, branch master</title>
<subtitle>4get is a proxy search engine that doesn't suck (personal fork)
</subtitle>
<id>https://git.moekyun.me/4get/atom?h=master</id>
<link rel='self' href='https://git.moekyun.me/4get/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.moekyun.me/4get/'/>
<updated>2025-01-24T08:53:34Z</updated>
<entry>
<title>remove ssl.conf when using http config</title>
<updated>2025-01-24T08:53:34Z</updated>
<author>
<name>throwaway</name>
<email>developerthrowaway@protonmail.com</email>
</author>
<published>2025-01-24T08:53:34Z</published>
<link rel='alternate' type='text/html' href='https://git.moekyun.me/4get/commit/?id=eed32a153c862cec31d1353ea0ed6e01fc70b8da'/>
<id>urn:sha1:eed32a153c862cec31d1353ea0ed6e01fc70b8da</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix treatment of config values with default of null and add php sodium</title>
<updated>2024-04-24T23:11:49Z</updated>
<author>
<name>throwaway</name>
<email>developerthrowaway@protonmail.com</email>
</author>
<published>2024-04-24T23:11:49Z</published>
<link rel='alternate' type='text/html' href='https://git.moekyun.me/4get/commit/?id=3a220d38b56af1286fe978f55c947eb514cadc1a'/>
<id>urn:sha1:3a220d38b56af1286fe978f55c947eb514cadc1a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>pass array as comma separated env</title>
<updated>2024-04-19T20:47:20Z</updated>
<author>
<name>throwaway</name>
<email>developerthrowaway@protonmail.com</email>
</author>
<published>2024-04-19T20:47:02Z</published>
<link rel='alternate' type='text/html' href='https://git.moekyun.me/4get/commit/?id=e31b9494af16bf833d14b6256ca055fa94b6f77b'/>
<id>urn:sha1:e31b9494af16bf833d14b6256ca055fa94b6f77b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>update php and improve docker docs</title>
<updated>2024-04-19T20:47:20Z</updated>
<author>
<name>throwaway</name>
<email>developerthrowaway@protonmail.com</email>
</author>
<published>2024-03-22T07:34:50Z</published>
<link rel='alternate' type='text/html' href='https://git.moekyun.me/4get/commit/?id=4afec792c4e7b4f9596443d83f7d43c86ceeb20d'/>
<id>urn:sha1:4afec792c4e7b4f9596443d83f7d43c86ceeb20d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>modify docker entrypoint</title>
<updated>2024-02-09T09:59:25Z</updated>
<author>
<name>throwaway</name>
<email>developerthrowaway@protonmail.com</email>
</author>
<published>2024-02-09T09:59:25Z</published>
<link rel='alternate' type='text/html' href='https://git.moekyun.me/4get/commit/?id=b3515bc0636e15d42c796ac31e4e088c007e55b2'/>
<id>urn:sha1:b3515bc0636e15d42c796ac31e4e088c007e55b2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>generate 4get config from env variables</title>
<updated>2024-01-09T07:14:27Z</updated>
<author>
<name>throwaway</name>
<email>developerthrowaway@protonmail.com</email>
</author>
<published>2024-01-09T07:14:27Z</published>
<link rel='alternate' type='text/html' href='https://git.moekyun.me/4get/commit/?id=0cea51e5a3aedd9faefc6029d6d0b28fe86c3db1'/>
<id>urn:sha1:0cea51e5a3aedd9faefc6029d6d0b28fe86c3db1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>allow docker container to run without ssl certificates (#14)</title>
<updated>2023-09-22T21:20:39Z</updated>
<author>
<name>throwaway</name>
<email>developerthrowaway@protonmail.com</email>
</author>
<published>2023-09-22T21:20:39Z</published>
<link rel='alternate' type='text/html' href='https://git.moekyun.me/4get/commit/?id=b7cc53c156867ea3d0351737d9815d506b61db09'/>
<id>urn:sha1:b7cc53c156867ea3d0351737d9815d506b61db09</id>
<content type='text'>
if certificate files are not mounted to /etc/4get/certs then remove ssl virtual host in /etc/apache2/httpd.conf and listen on port 80
also change references "luuul/4get:1.0.0" to "luuul/4get:latest"

Reviewed-on: https://git.lolcat.ca/lolcat/4get/pulls/14
Co-authored-by: throwaway &lt;developerthrowaway@protonmail.com&gt;
Co-committed-by: throwaway &lt;developerthrowaway@protonmail.com&gt;
</content>
</entry>
<entry>
<title>add set -e and use exec to replace parent process to handle docker signals (#6)</title>
<updated>2023-08-25T01:50:05Z</updated>
<author>
<name>throwaway</name>
<email>developerthrowaway@protonmail.com</email>
</author>
<published>2023-08-25T01:50:05Z</published>
<link rel='alternate' type='text/html' href='https://git.moekyun.me/4get/commit/?id=232995bf0d4274f904044e6dd0dc8098757b4be3'/>
<id>urn:sha1:232995bf0d4274f904044e6dd0dc8098757b4be3</id>
<content type='text'>
use `exec` to turn httpd into parent process. This is important for docker signalling such as `docker stop ${container_id}`
add `set -e` which stops the entrypoint script if any command exits with a non-zero exit code.

Reviewed-on: https://git.lolcat.ca/lolcat/4get/pulls/6
Co-authored-by: throwaway &lt;developerthrowaway@protonmail.com&gt;
Co-committed-by: throwaway &lt;developerthrowaway@protonmail.com&gt;
</content>
</entry>
<entry>
<title>Add Dockerfile and docker entrypoint (#5)</title>
<updated>2023-08-23T23:31:08Z</updated>
<author>
<name>throwaway</name>
<email>developerthrowaway@protonmail.com</email>
</author>
<published>2023-08-23T23:31:08Z</published>
<link rel='alternate' type='text/html' href='https://git.moekyun.me/4get/commit/?id=40e058a32a6e73e0afab55889302956ebf12d459'/>
<id>urn:sha1:40e058a32a6e73e0afab55889302956ebf12d459</id>
<content type='text'>
Add Dockerfile and docker entrypoint

Co-authored-by: lolcat &lt;lolcat@no-reply@lolcat.ca&gt;
Reviewed-on: https://git.lolcat.ca/lolcat/4get/pulls/5
Co-authored-by: throwaway &lt;developerthrowaway@protonmail.com&gt;
Co-committed-by: throwaway &lt;developerthrowaway@protonmail.com&gt;
</content>
</entry>
</feed>
