-
-
Notifications
You must be signed in to change notification settings - Fork 213
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
Update nginx.md #604
base: master
Are you sure you want to change the base?
Update nginx.md #604
Conversation
✅ Deploy Preview for pihole-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Thanks for your contribution. The automatic test fail due to styling:
|
@yubiuser So I added the |
The tests still faill here
|
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
Hello, I'm not sure what I have to do to resolve the conflicts. |
In your local git repo, fetch the upstream. Then you can either do a rebase of this branch on |
Thank you for help Yubiuser ! |
I think you forgot to push your changes to github |
Add section before section 7 with "Edit /etc/nginx/nginx.conf to contain the following in the http section: gzip on; gzip_min_length 1000; gzip_proxied expired no-cache no-store private auth; gzip_types text/plain application/xml application/json application/javascript application/octet-stream text/css; include /etc/nginx/conf.d/*.conf; " This modification makes the Web Interface working with NGINX. (This is my first contribution to GitHub, so I hope the formatting is okay).
Updated to correct numbering
Conflicts have been resolved. |
By submitting this pull request, I confirm the following:
please fill any appropriate checkboxes, e.g: [X]
git rebase
)Please make sure you Sign Off all commits. Pi-hole enforces the DCO.
What does this PR aim to accomplish?:
A detailed description, screenshots (if necessary), as well as links to any relevant GitHub issues
This modification makes the Web Interface working with NGINX.
How does this PR accomplish the above?:
A detailed description (such as a changelog) and screenshots (if necessary) of the implemented fix
Edit /etc/nginx/nginx.conf to contain the following in the http section:
gzip on;
gzip_min_length 1000;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain application/xml application/json application/javascript application/octet-stream text/css;
include /etc/nginx/conf.d/*.conf;
What documentation changes (if any) are needed to support this PR?:
A detailed list of any necessary changes
Add section before section 7 with
"Edit /etc/nginx/nginx.conf to contain the following in the http section:
gzip on;
gzip_min_length 1000;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain application/xml application/json application/javascript application/octet-stream text/css;
include /etc/nginx/conf.d/*.conf;
"
(This is my first ever contribution to GitHub, so I hope the formatting is okay).
Thank you for developing such great tool!