We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
all get of swagger-static "GET /swagger-static/lib/marked.js HTTP/1.0" giving 404
my niginx setting:
server { listen 8888; access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log;
location /recko/ { proxy_pass http://localhost:8001/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-Proto $scheme;
} }
looks like issue of relative url.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
all get of swagger-static
"GET /swagger-static/lib/marked.js HTTP/1.0"
giving
404
my niginx setting:
server {
listen 8888;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
}
}
looks like issue of relative url.
The text was updated successfully, but these errors were encountered: