The page of jekyll-admin is blank
See original GitHub issueDescription:
Tell us a bit about yourself:
- Version of JekyllAdmin I’m using <HINT: use
bundle show
to check>:
jekyll-admin (0.8.1) - Version of Jekyll I’m using <HINT: use
bundle show
to check>:
jekyll 3.8.5 - Version of NodeJS I’m using <HINT: use
node -v
to check>: Not using node - Operating System <e.g. OS X, Windows>: CentOS Linux release 7.6.1810 (Core) (VPS)
- Browser <e.g, Safari, Chrome>: Chrome
Steps to reproduce:
I expected the following:
- jekyll is installed correctly;
- But the jekyll‘s default port is 4000, so I installed the nginx, and then proxy the data from 4000 to 80 port. The configure of nginx is as follows:
server {
listen 80;
server_name 47.107.164.222;
location / {
proxy_pass http://localhost:4000;
}
}
and when I enter IP
(instead of IP:4000
) in the browser, the page of Jekyll is displayed normally, as follows:
3. When I installed Jekyll-admin and typed IP/admin
in the browser, the page was blank.
No information was displayed, as well as error.
But got the following, instead:
A blank page
Other details:
So how to solve this problem?
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:11 (3 by maintainers)
Top Results From Across the Web
Jekyll + GitHub works on local but empty page on https ...
Hi I'm a newbie on jekyll. I have a problem with building my github blog using jekyll. I succeeded building jekyll blog on...
Read more >Blank Page
Addons. Pages. Login Screens: LoginRegisterForgot Password. Other Pages: 404 PageBlank ... vsoch/sb-admin-jekyll; 5 Stars; 3 Forks. Blank Page. © vsoch • 2019.
Read more >#Jekyll Admin - YouTube
In today's video, I figured we could take a look at this tool I found together. I have never even installed this tool...
Read more >Jekyll works locally but comes up blank on github pages - Help
I am trying to build a page from a github repo in an org. Jekyll version 3.4.1. created repo - username.orgcustomdomain.
Read more >jekyll/jekyll - Gitter
Jekyll adds all new pages to this navigation bar, but seeing as I will have ... jekyll-admin Display in the lower right corner...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Got it working!
Ideally we’d combine the blocks using a regex, but I can’t get it working - I’ve tried
(this block needs to come before regex location matches for the main site) but for some reason
.js
and.css
files get their mime type set totext/html
when I do this.And you must enable some kind of authentication - I’ve used http basic auth
See the nginx docs
I have same problem. When I send http request to
/_api/configuration/
with Referer header, it just returns 403 stauts. Without Referer header it works fine.