Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question about passing arguments using FastCGI + NGINX #2

Open
zklosko opened this issue Feb 8, 2021 · 0 comments
Open

Question about passing arguments using FastCGI + NGINX #2

zklosko opened this issue Feb 8, 2021 · 0 comments

Comments

@zklosko
Copy link

zklosko commented Feb 8, 2021

I have a question regarding how to set up FastCGI to accept arguments in addition to the script filename. I currently have the same setup listed in the readme on this repo:

    location ~ ^/cgi-bin {
        root /srv/cgi-bin;
        rewrite ^/cgi-bin/(.*) /$1 break;

        include fastcgi_params;
        fastcgi_pass unix:/var/run/fcgiwrap.socket;
        fastcgi_param SCRIPT_FILENAME /srv/cgi-bin$fastcgi_script_name;
    }

It works well with a script like scriptname.sh, which would run by browsing to servername.com/cgi-bin/scriptname. What I need to do is to enable arguments coming in over the GET request: servername.com/cgi-bin/scriptname?val1+val2 translated to running bash /srv/cgi-bin/scriptname val1 val2 on the system. How would I configure Nginx and FastCGI to do this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant