diff --git a/README.md b/README.md
index a824d7d..65c835b 100644
--- a/README.md
+++ b/README.md
@@ -75,4 +75,7 @@ $ pip uninstall jprq
## Troubleshooting
- With serving React, Vue or any other modern web apps, make sure you run production server or build the app and serve static files as JPRQ is not capable of exposing Websocket.
-- With serving React, Vue or any other modern web apps in development mode, you can use TCP Tunneling
\ No newline at end of file
+- With serving React, Vue or any other modern web apps in development mode, you can use TCP Tunneling
+
+## Self-Hosting
+This repository offers excellent resources for self-hosting configuration and setup.
\ No newline at end of file
diff --git a/jprq_cli/client/main.go b/jprq_cli/client/main.go
index d185f3e..9a7381d 100644
--- a/jprq_cli/client/main.go
+++ b/jprq_cli/client/main.go
@@ -24,9 +24,9 @@ func main() {
args := flag.Args()
if len(os.Args) < 3 {
- log.Fatalf("Usage: jprq \n"+
+ log.Fatalf("Usage: jprq [--subdomain] [--host] \n"+
" Supported Protocols: [tcp, http]\n"+
- " Optional Argument: -subdomain (only for HTTP), -host\n"+
+ " Optional Argument: -subdomain, -host\n"+
" Client Version: %s\n", version)
}