You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I followed this guide to install Kimchi on Ubuntu Server 18.04, but when I try to access https://:8001/, I get 400 Bad Request from Nginx.
One thing worth mentioning is that I had to tell Nginx to listen to port 89 instead of the default 80, because I already have a Traefik instance listening on that port. Could this be the problem?
To Reproduce
Steps to reproduce the behavior:
The exact steps to reproduce are difficult to describe, but I believe that the relevant parts are:
Follow the mentioned tutorial to install Kimchi on a Ubuntu Server 18.04
Change Nginx port to 89
Try to access the server
Expected behavior
I expected to see Kimchi login page
Desktop (please complete the following information):
OS: Ubuntu Server 18.04
Browser: Chrome and Safari
Version 2.5
Additional context
Wok seems to be running correctly:
service wokd status
● wokd.service - Wok - Webserver Originated from Kimchi
Loaded: loaded (/lib/systemd/system/wokd.service; enabled; vendor preset: enabled)
Drop-In: /etc/systemd/system/wokd.service.d
└─kimchi.conf
Active: active (running) since Tue 2019-12-10 21:50:04 CET; 39min ago
Docs: https://github.com/kimchi-project/wok/wiki
Main PID: 1606 (python2)
Tasks: 17 (limit: 4915)
CGroup: /system.slice/wokd.service
├─1606 python2 /usr/bin/wokd
└─1717 python2 /usr/bin/wokd
Dec 10 21:50:04 nuc systemd[1]: Started Wok - Webserver Originated from Kimchi.
And I can't make sense of the error logs. Is there anything relevant here to point me to where this error is coming from?
# Default server configuration#
server {
listen 89 default_server;
listen [::]:89 default_server;
error_log /var/log/nginx/error.log debug;# SSL configuration## listen 443 ssl default_server;# listen [::]:443 ssl default_server;## Note: You should disable gzip for SSL traffic.# See: https://bugs.debian.org/773332## Read up on ssl_ciphers to ensure a secure configuration.# See: https://bugs.debian.org/765782## Self signed certs generated by the ssl-cert package# Don't use them in a production server!## include snippets/snakeoil.conf;
root /var/www/html;# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then# as directory, then fall back to displaying a 404.
try_files $uri$uri/ =404;
}
}
Any ideas on how to go about this would be appreciated.
Thanks!
The text was updated successfully, but these errors were encountered:
Describe the bug
I followed this guide to install Kimchi on Ubuntu Server 18.04, but when I try to access https://:8001/, I get 400 Bad Request from Nginx.
One thing worth mentioning is that I had to tell Nginx to listen to port 89 instead of the default 80, because I already have a Traefik instance listening on that port. Could this be the problem?
To Reproduce
Steps to reproduce the behavior:
The exact steps to reproduce are difficult to describe, but I believe that the relevant parts are:
Expected behavior
I expected to see Kimchi login page
Desktop (please complete the following information):
Additional context
Wok seems to be running correctly:
And I can't make sense of the error logs. Is there anything relevant here to point me to where this error is coming from?
And this is my default nginx conf
Any ideas on how to go about this would be appreciated.
Thanks!
The text was updated successfully, but these errors were encountered: