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

Fix cgi environment url parsing #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/mapserv.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ try {
* for details of CGI environment variables.
*/
function createCGIEnvironment(req, vars) {
var urlParts = url.parse(decodeURIComponent(req.url)), // parse the request url
var urlParts = url.parse(req.url), // parse the request url
host = req.headers.host.split(':'),
env = {
// Server specific variables:
Expand All @@ -73,8 +73,8 @@ function createCGIEnvironment(req, vars) {
SERVER_PROTOCOL: 'HTTP/' + req.httpVersion,
SERVER_PORT: host[1],
REQUEST_METHOD: req.method,
PATH_INFO: urlParts.pathname || '/',
PATH_TRANSLATED: path.resolve(path.join('.', urlParts.pathname)),
PATH_INFO: decodeURIComponent(urlParts.pathname) || '/',
PATH_TRANSLATED: path.resolve(path.join('.', decodeURIComponent(urlParts.pathname))),
SCRIPT_NAME: '/',
QUERY_STRING: urlParts.query || '',
REMOTE_ADDR: req.connection.remoteAddress
Expand Down