Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] Correct docs and packaging for miniweb default path #1539

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/content/articles/miniweb.article
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ preferably the head node. It has many flags, seen here:
-passwords string
password file for auth
-root string
base path for web files (default "misc/web")
base path for web files (default "web")
-v log on stderr (default true)
-verbose
log on stderr (default true)
Expand Down
2 changes: 1 addition & 1 deletion doc/content/training/module04.slide
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ This will print the available options for miniweb

Assuming minimega is located in /opt/bin/minimega, use:

$ ./miniweb -root /opt/misc/web -console -base /opt &
$ ./miniweb -root /opt/web -console -base /opt &

- miniweb supports per-path authentication so that users can be limited to specific namespaces or VMs.

Expand Down
2 changes: 1 addition & 1 deletion doc/content/training/module04_content/mw_help.mm
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ base path for minimega (default "/tmp/minimega")
-passwords string
password file for auth
-root string
base path for web files (default "misc/web")
base path for web files (default "web")
-v, -verbose
log on stderr (default true)
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ MM_LOGFILE=/var/log/minimega.log
By default, the following values are set for miniweb:

```
MINIWEB_ROOT=/opt/minimega/misc/web
MINIWEB_ROOT=/opt/minimega/web
MINIWEB_HOST=0.0.0.0
MINIWEB_PORT=9001
```
Expand Down
1 change: 1 addition & 0 deletions packaging/debian/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
minimega.deb
minimega/opt
minimega/usr
minimega/DEBIAN/control
2 changes: 1 addition & 1 deletion packaging/debian/build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ mkdir -p $DST/misc
cp -r $MM/misc/daemon $DST/misc/
cp -r $MM/misc/vmbetter_configs $DST/misc/
mkdir -p $DST/web
cp -r $MM/web $DST/web/
cp -r $MM/web $DST/

DOCS=$SCRIPT_DIR/minimega/usr/share/doc/minimega
mkdir -p $DOCS
Expand Down