Size: 795
Comment:
|
← Revision 25 as of 2020-09-02 09:52:33 ⇥
Size: 892
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
#rev 2018-10-11 pmeier #rev 2020-09-02 pmeier ## page was renamed from Homepage/Upload |
|
Line 2: | Line 6: |
* download this script as [[attachment:public_uploadscript_via_perl|index.cgi]] | * download this script as [[attachment:index.cgi.pl|index.cgi]] |
Line 4: | Line 8: |
* run `chmod a+rx ~/public_html/get/` * run `chmod a+rx ~/public_html/get/index.cgi` |
* run `chmod 755 ~/public_html/get/` * run `chmod 744 ~/public_html/get/index.cgi` |
Line 7: | Line 11: |
* you can restrict the access to the script with a `.htaccess` file in `~/public_html/get/`. Find more about this [[http://httpd.apache.org/docs/2.0/howto/htaccess.html|here]]. | * you can restrict the access to the script with a `.htaccess` file in `~/public_html/get/`. Find more about this [[https://computing.ee.ethz.ch/Web/Homepage/Security|here]]. |
Line 9: | Line 13: |
* now you can access the script via `http://people.ee.ethz.ch/~[USERNAME]/get` | * now you can access the script via `https://people.ee.ethz.ch/~[USERNAME]/get` ---- [[CategoryWEBS]] |
Providing a public http upload script on your website with perl
download this script as index.cgi
copy it to ~/public_html/get/index.cgi
run chmod 755 ~/public_html/get/
run chmod 744 ~/public_html/get/index.cgi
create a directory mkdir ~/public_upload/ writable only for you chmod go-rwx ~/public_upload. The script will run with the rights of your account (through apache's suexec mechanism).
you can restrict the access to the script with a .htaccess file in ~/public_html/get/. Find more about this here.
the files will now be uploaded to ~/public_upload/
now you can access the script via https://people.ee.ethz.ch/~[USERNAME]/get