'README.md' updaten
This commit is contained in:
parent
279ce017d3
commit
985e0be1ce
14
README.md
14
README.md
@ -53,6 +53,20 @@ This creates a virtual environment at `.venv` and installs all the dependencies
|
||||
sudo apt install pandoc
|
||||
```
|
||||
|
||||
Configure your webserver, to connect your application root (for example `octomode.domain.org` or `sub.domain.org/octomode/`) to the port on which the flask application is running (`localhost:5001` by default).
|
||||
|
||||
This is an example for nginx webservers:
|
||||
|
||||
```
|
||||
# ----------------------------------------------------
|
||||
# OCTOMODE
|
||||
|
||||
location /octomode/ {
|
||||
proxy_pass http://localhost:5555;
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
And finally, run the application.
|
||||
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user