Skip to content

Trouble with client-server connection. #159

@MeAReO

Description

@MeAReO

Hi i have a problem

I up a NGINX server site is work plugin work too but it doesn't connect.

I'm think it's can be problem with my core Purpur at 1.21.4 version he based on Paper how i remember

My nginx config:

server {
    listen 80;
    listen [::]:80;
    server_name console.<domain.com>;
    return 301 https://$host$request_uri;
}

server {
    listen 443 ssl;
    listen [::]:443;
    server_name console.<domain.com>;

    ssl_certificate /etc/nginx/ssl/console.<domain.com>.cert.pem;
    ssl_certificate_key /etc/nginx/ssl/console.<domain.com>.key.pem;

    ssl_protocols TLSv1.2 TLSv1.3;
    ssl_ciphers HIGH:!aNULL:!MD5;

    root /var/www/html;
    index index.html;

    location / {
      root /var/www/html;
      try_files $uri $uri/ =404;
    }

}

My plugin config:

useSSL: true
StoreType: JKS
KeyStore: plugins/WebConsole/keystore.jks
StorePassword: <Password>
KeyPassword: <Password>
host: <IP Server>
port: 8080
language: en
passwords:
  admin:
    user1:
      password: <Password>
      commandWhitelist:
        enabled: false
        commandWhitelistActsAsBlacklist: false
        whitelist:
        - whisper
        - gamemode survival
  viewer: {}

It's default setting idk why it not work. All work in local network

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions