-
-
Notifications
You must be signed in to change notification settings - Fork 376
Closed
Labels
Description
Description:
Tell us a bit about yourself:
- Version of JekyllAdmin I'm using <HINT: use
bundle showto check>:
jekyll-admin (0.8.1) - Version of Jekyll I'm using <HINT: use
bundle showto check>:
jekyll 3.8.5 - Version of NodeJS I'm using <HINT: use
node -vto 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?
ali80