# Vexon Official Site Deployment

The site is static and can be served by any web server.

## Local Preview

```bash
cd vexon-official-site
python3 -m http.server 8080
```

Open:

```text
http://127.0.0.1:8080
```

## Nginx Deployment

```bash
sudo mkdir -p /var/www/vexon
sudo rsync -av --delete ./ /var/www/vexon/
```

Example server block:

```nginx
server {
    listen 80;
    server_name vexon.vexonus.com;
    root /www/wwwroot/vexon.vexonus.com;
    index index.html;

    location = /index.html {
        return 301 /;
    }

    location / {
        try_files $uri $uri/ /index.html;
    }
}
```

Use the same rule for `wallet.vexonus.com` and `pool.vexonus.com`; only change `server_name` and `root`.

The pool dashboard in this first release is a public interface shell. Wire live values to the production pool database or an API endpoint before announcing the public endpoint.
