diff options
| author | Shulhan <ms@kilabit.info> | 2023-10-29 13:46:12 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-10-29 13:46:12 +0700 |
| commit | b5e1283046aa804baa8e1399dc11bf1cd3b29430 (patch) | |
| tree | 7538b6c7674ad29022ad57f7820bc42eece43414 /http_server.go | |
| parent | 2d5b6d490445a0c0552ef0d519108462e5263ef5 (diff) | |
| download | awwan-b5e1283046aa804baa8e1399dc11bf1cd3b29430.tar.xz | |
all: rename directory "_www" to "_wui"
Since we now have website, the directory name "_www" become misleading.
The actual website files is located under "_www/doc", the "_www" directory
is for web-user interface which includes documentation that has the
same content as our websites.
Diffstat (limited to 'http_server.go')
| -rw-r--r-- | http_server.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http_server.go b/http_server.go index 6a7f576..a50c0ec 100644 --- a/http_server.go +++ b/http_server.go @@ -67,7 +67,7 @@ func newHttpServer(aww *Awwan) (httpd *httpServer, err error) { } var serverOpts = &libhttp.ServerOptions{ - Memfs: internal.MemfsWww, + Memfs: internal.MemfsWui, Address: defListenAddress, } |
