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
In development env. rucaptcha_image_tag will render
<img alt="Rucaptcha" class="rucaptcha-image" src="http://127.0.01:3000/rucaptcha/">
The src attribute include host info. It's ok in local machine.
Edge case: in a remote server, just run with development env and bind local address. use Nginx to listen to 80 and forward request.
rails server -b 0.0.0.0
In this case, the absolute path of Rucaptcha tag with not working.
Whether using the relative path of image would be better?
<img alt="Rucaptcha" class="rucaptcha-image" src="/rucaptcha/">
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In development env. rucaptcha_image_tag will render
The src attribute include host info. It's ok in local machine.
Edge case: in a remote server, just run with development env and bind local address. use Nginx to listen to 80 and forward request.
In this case, the absolute path of Rucaptcha tag with not working.
Whether using the relative path of image would be better?
The text was updated successfully, but these errors were encountered: