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
Official Gitlab Pages explains that for a custom 404 page on your site, simply add a 404.html into the root of your site: https://docs.gitlab.com/ee/pages/README.html#custom-error-codes-pages
As it turns out, this is trivial to implement: Add the following line to /src/helper/template.conf: error_page 404 = /404.html;
error_page 404 = /404.html;
Setup this up and is working well in my environment now.
The text was updated successfully, but these errors were encountered:
I'll to get a pull request together for this tomorrow.
Sorry, something went wrong.
Fixes YuMS#18 -- adding an error page directive for custom error pages
0780e22
Merge pull request #20 from mechanicjay/master
1148083
Fixes #18 -- adding an error page directive for custom error pages
See #20 (comment)
#20 give this a try but it is not perfect, so I merged it to a non-master branch for now.
No branches or pull requests
Official Gitlab Pages explains that for a custom 404 page on your site, simply add a 404.html into the root of your site:
https://docs.gitlab.com/ee/pages/README.html#custom-error-codes-pages
As it turns out, this is trivial to implement:
Add the following line to /src/helper/template.conf:
error_page 404 = /404.html;
Setup this up and is working well in my environment now.
The text was updated successfully, but these errors were encountered: