You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
cgi | 2 years ago | |
static | 2 years ago | |
uploads | 2 years ago | |
README.md | 2 years ago |
README.md
Upload file with webbrowser using python CGI
NGINX :
server {
listen 80;
server_name example.com;
location / {
root <your folder>/static;
autoindex on;
index index.html;
}
location ~ ^/cgi {
root <your folder>/cgi;
rewrite ^/cgi/(.*) /$1 break;
include fastcgi_params;
fastcgi_pass unix:/var/run/fcgiwrap.socket;
fastcgi_param SCRIPT_FILENAME <your folder>/cgi$fastcgi_script_name;
}
}