aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMax Christian Pohle2019-11-13 00:23:06 +0100
committerMax Christian Pohle2019-11-13 00:27:47 +0100
commit1dcb4c6cc058800d8995bd3489ce840ff07055ec (patch)
treed16c02338c38d5bd06158fbcc021e52986b8b837 /README.md
parent151c39e6aa8e9ec9d9cbe31bcca81ada71d9c72b (diff)
downloadpdnsupdate-1dcb4c6cc058800d8995bd3489ce840ff07055ec.tar.bz2
pdnsupdate-1dcb4c6cc058800d8995bd3489ce840ff07055ec.zip
Replacing the old php with a python script
python was already installed in my dns jail, so this has very little overhead compared to a full php installation.
Diffstat (limited to 'README.md')
-rw-r--r--README.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d8869ae
--- /dev/null
+++ b/README.md
@@ -0,0 +1,22 @@
1Installation: FreeBSD
2=====================
3
41. install uwsgi (dependency, but really small): `pkg install uwsgi`
5
62. add to `/etc/rc.conf`:
7 ```
8 uwsgi_enable="YES"
9 uwsgi_emperor="YES"
10 uwsgi_vassals_dir="/usr/local/www/*/uwsgi.ini"
11 ```
12
133. start uwsgi `service uwsgi start`
14
154. Git clone this directory under /usr/local/www/
16
17
18WIP
19===
20
21This is work in progress. Do not expect wonders or good documentation in this
22early stage of development.
..