Skip to content
Discussion options

You must be logged in to vote

Thanks,

Got there in the end.

  1. You need to install nginx server
  2. Change the TELEGRAM_PORT in docker-compose.yml & .env
worker_processes 1;
#
events { worker_connections 1024; }
#
http {
    sendfile on;
    large_client_header_buffers 4 32k;
    #
    upstream web-api {
        server 4cat:8888;
    }
 #
    server {
        listen 80;
        server_name site;
        #
        location / {
            return 301 https://$host$request_uri;
        }
    }
    server {
        listen 443 ssl;
        server_name 4cat.dcs.bbk.ac.uk;
        #
        ssl_certificate /etc/nginx/ssl/4cat.crt;
        ssl_certificate_key /etc/nginx/ssl/4cat.key;
        location / {
            proxy_pass    …

Replies: 3 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@dale-wahl
Comment options

Answer selected by stijn-uva
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants