summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefanor <defanor@uberspace.net>2019-02-11 13:54:15 +0300
committerdefanor <defanor@uberspace.net>2019-02-11 13:54:15 +0300
commit1f3580e9e7c6216aa116e105d00548780f6a78cd (patch)
tree1e890a0802cef35b08c2b9c97cf2c43e5282c84b
parent330f68012df0aa5c215a99924bd9b5a343512499 (diff)
Update READMEs
- Use XSLT_DIR instead of FCGI_CHDIR in the nginx configuration example, since FCGI_CHDIR is not always available. - Link the "dynamic websites" note as additional documentation.
-rw-r--r--README.md3
-rw-r--r--example/README.md2
2 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 6e57199..6138ee5 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
# pg×html
-This is a tool to make custom web interfaces to PostgreSQL databases,
+This is a tool to make custom web interfaces to PostgreSQL databases
+(aka [dynamic websites](https://defanor.uberspace.net/notes/dynamic-websites.xhtml)),
using simple and standard technologies:
- SQL for querying
diff --git a/example/README.md b/example/README.md
index 3aa50bf..0a75299 100644
--- a/example/README.md
+++ b/example/README.md
@@ -34,7 +34,7 @@ server {
location / {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /home/defanor/.cabal/bin/pgxhtml;
- fastcgi_param FCGI_CHDIR /home/defanor/proj/haskell/pgxhtml/example/;
+ fastcgi_param XSLT_DIR /home/defanor/proj/haskell/pgxhtml/example/;
fastcgi_pass 127.0.0.1:5152;
}
}