This commit is contained in:
@@ -206,6 +206,41 @@ Install types:
|
|||||||
A MAC build of bare files untested for people to try if they really want to go this route
|
A MAC build of bare files untested for people to try if they really want to go this route
|
||||||
until we have a mac we can't really support this so we should say unsupported
|
until we have a mac we can't really support this so we should say unsupported
|
||||||
|
|
||||||
|
# LINUX BAREMETAL NGINX
|
||||||
|
|
||||||
|
Followed normal lan install
|
||||||
|
|
||||||
|
Installed NGINX using guide here https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-20-04
|
||||||
|
basically just
|
||||||
|
sudo apt install nginx
|
||||||
|
No need to adjust ufw firewall settings at all as am using digitalocean firewall
|
||||||
|
|
||||||
|
replaced default nginx site config file here /etc/nginx/sites-enabled/default
|
||||||
|
with this configuration for initial testing:
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
#server_name green.helloayanova.com *;
|
||||||
|
location / {
|
||||||
|
proxy_pass http://127.0.0.1:7575;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection keep-alive;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_cache_bypass $http_upgrade;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
confirm it's valid:
|
||||||
|
nginx -t
|
||||||
|
|
||||||
|
restart nginx to take effect
|
||||||
|
systemctl restart nginx
|
||||||
|
|
||||||
|
Navigated to the ip address and it works properly but not ssl yet
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -218,6 +253,9 @@ Install types:
|
|||||||
██████╔╝╚██████╔╝╚██████╗╚██████╔╝██║ ╚═╝ ██║███████╗██║ ╚████║ ██║ ██║ ██║ ██║ ██║╚██████╔╝██║ ╚████║
|
██████╔╝╚██████╔╝╚██████╗╚██████╔╝██║ ╚═╝ ██║███████╗██║ ╚████║ ██║ ██║ ██║ ██║ ██║╚██████╔╝██║ ╚████║
|
||||||
╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝
|
╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝
|
||||||
|
|
||||||
|
|
||||||
|
- 1: todo: the icon for AyaNova is the old yellow one in the docs, change to the new green one
|
||||||
|
|
||||||
- Mirror docs to our site so we can link to a central place for them when doing website and for beta test, installation etc
|
- Mirror docs to our site so we can link to a central place for them when doing website and for beta test, installation etc
|
||||||
|
|
||||||
First up is installation docs
|
First up is installation docs
|
||||||
|
|||||||
Reference in New Issue
Block a user