LogoLogo
  • Getting Started
  • CLI
    • Docker
    • Config.yaml
  • GUI (SOON)
  • Tunnels Types
    • HTTP/s
      • HTTP/s plugins
      • HTTP/s apps
    • TLS
    • TCP
    • UDP
  • Reservations
    • Domain
    • Endpoint
  • Troubleshoot
    • Common errors
  • Tutorials
    • Expose a local web server
    • Expose Apache/Nginx web server
    • Share files from localhost
    • Use LocalXpose with Traefik
    • Expose PocketBase backend
    • Create a custom domain name
    • Make Let's Encrypt certificate
    • Access your IP camera remotely
    • Access your Raspberry Pi remotely
    • Sync your Keepass password manager
    • Expose localhost RASA chatbot for Telegram Integration
    • Expose your local Netdata Instance
    • Testing Stripe webhook
    • Expose localhost Kubernetes
    • Expose database server (PostgreSQL)
    • Exposing local Minecraft server
    • More Tutorials
Powered by GitBook
On this page

Was this helpful?

  1. Tunnels Types
  2. HTTP/s

HTTP/s apps

A list of built-in apps that you can use without configuring any third-party services.

PreviousHTTP/s pluginsNextTLS

Last updated 2 years ago

Was this helpful?

File Server

File server app let you expose any folder in your localhost machine to the internet, for example:

# *nix based
loclx tunnel http --file-server /home/shared

# windows
loclx tunnel http --file-server C:\Users\ali\shared

This will serve the files in the shared directory to be accessible through the internet, also you can use any middleware beside the file server app for example to protect this file server with basic authentication so only known users can access the created shared folder, you can run:

loclx tunnel http --file-server /home/shared --basic-auth user:pass

Check tutorial for more information.

THIS