diff options
author | June McEnroe <june@causal.agency> | 2020-07-14 16:44:33 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-14 16:44:33 +0000 |
commit | 0bdd3c751331ab0c3e5f54a9ba8df1593b2c7df8 (patch) | |
tree | 0db9cca3e8e86f33f49e9e8acdf8e87824c7e8a4 | |
parent | Check that there is upload data (diff) | |
download | src-0bdd3c751331ab0c3e5f54a9ba8df1593b2c7df8.tar.gz src-0bdd3c751331ab0c3e5f54a9ba8df1593b2c7df8.zip |
Install up CGI with mode 700
It should never be served as a regular file.
-rw-r--r-- | www/temp.causal.agency/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/temp.causal.agency/Makefile b/www/temp.causal.agency/Makefile index 3f608286..3e908305 100644 --- a/www/temp.causal.agency/Makefile +++ b/www/temp.causal.agency/Makefile @@ -10,7 +10,7 @@ clean: rm -f up install: up - install up ${WEBROOT}/up + install -m 700 up ${WEBROOT}/up uninstall: rm -f ${WEBROOT}/up |