Skip to content
This repository has been archived by the owner on Apr 26, 2022. It is now read-only.
/ diploma-thesis Public archive

Дипломная работа, АКВТ, РП-41

Notifications You must be signed in to change notification settings

glad2os/diploma-thesis

Repository files navigation

Degree work

Development of a web application for instant messaging via the Internet/Intranet on the Electron platform using JavaScript language

Reverse proxy

alt text

NGINX Reverse Proxy

location / {
  proxy_pass http://localhost:8080;
  proxy_set_header X-Real-IP $remote_addr;
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_set_header X-Nginx-Proxy true;
  proxy_http_version 1.1;
  proxy_set_header Upgrade $http_upgrade;
  proxy_set_header Connection "Upgrade";
  proxy_set_header Host $host;
  client_max_body_size 100M;
}

Run as container

docker build -t gladdos/wtchat
docker run --name wtchat -p 8080:8080 -d gladdos/wtchat

Yours application will be available at the next url: http://localhost:8080/

About

Дипломная работа, АКВТ, РП-41

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published