Helpline: +8809638884004 WhatsApp: +8801825599774 stayorix@veltrixiabd.com
facebook.com/veltrixia.bd
1
Account & Business
2
Email OTP
3
Plan & Subdomain
4
Legal & Deploy

Start Smart Resort Management

Fill in your owner and business details to launch your 7-day free trial of Stayrix SaaS ERP.

Verify Email Address (OTP)

We have sent a 6-digit verification code to your email. Enter the code below.

Select Plan & Subdomain

Choose your preferred subdomain, optional custom domain mapping, and add-on modules.

.soft.stayorix.com
Enter your desired resort slug.
7 Days Free
Free Trial
$0 / 7 Days

Test all core resort ERP features free for 7 days. (Standard Subdomain)

Pro Business
$49 / Month

Custom Domain mapping unlocked, unlimited bookings & 24/7 VIP support.

Note: Even with a custom domain mapped, your primary Stayrix link oceanview.soft.stayorix.com remains permanently active as a backup.

Gate Ticketing System

Walk-in visitor tickets, scanner verification & CCTV camera logs. ({subdomain}.gate.stayorix.com)

+$15 /mo

Parking Toll System

Vehicle parking toll tickets & slot management. ({subdomain}.parking.stayorix.com)

+$10 /mo

Restaurant POS (POSIXIA)

Food menu catalog, KOT & room charge billing integration. ({subdomain}.pos.stayorix.com)

+$20 /mo
Base Plan: $0
Selected Add-ons: $0
Total Payable: $0

Legal Documentation & Deployment

Upload your trade license document to finalize automated provisioning.

# Stayrix SaaS Implementation Walkthrough & Production Deployment Summary ## Live Production Environment Overview - **Ubuntu VPS IP**: `66.116.210.175` - **Hostname**: `srv01stayorix.veltrixiabd.com` - **SSL Security**: Active Let's Encrypt SSL (Auto-renew enabled) - **Authoritative DNS Server**: Bind9 (`st1.veltrixiabd.com` & `st2.veltrixiabd.com` pointing to `66.116.210.175`) - **SMTP Gateway**: `mail.veltrixiabd.com` Port 465 SSL (`stayorix-notify@veltrixiabd.com` -> `109.123.239.105`) - **Portal Architecture**: Pure PHP MVC Framework (Clean URLs, Zero `.php` extensions exposed) --- ## 1. Deployed Web Applications & Directory Mapping | Service Module | Nginx Domain Pattern | Web Root Directory | SSL & Architecture Status | |---|---|---|---| | **Root Landing Page** | `https://stayorix.com`
`https://www.stayorix.com` | `/var/www/stayorix-root` | **SECURE (HTTPS 200 OK)** | | **Database Management (phpMyAdmin)** | `https://db-stayorix.veltrixiabd.com` | `/var/www/phpmyadmin` | **SECURE (HTTPS 200 OK)** | | **Central License Control Panel** | `https://manage.stayorix.com` | `/var/www/stayorix-manage` | **SECURE & INTEGRATED** | | **Customer Portal & Client Login** | `https://portal.stayorix.com`
`https://portal.stayorix.com/login` | `/var/www/stayorix-portal` | **SECURE (Clean PHP MVC 200 OK)** | | **Dynamic Tenant ERP** | `https://*.soft.stayorix.com` | `/var/www/stayorix-system` | **SECURE (HTTPS 200 OK)** | | **Restaurant POS Add-on** | `https://*.pos.stayorix.com` | `/var/www/stayorix-posixia` | **SECURE (HTTPS 200 OK)** | | **Gate & Parking Ticketing** | `https://*.gate.stayorix.com`
`https://*.parking.stayorix.com` | `/var/www/stayorix-gate` | **SECURE (HTTPS 200 OK)** | --- ## 2. Customer Portal MVC Clean Routing - `/` -> `HomeController@index` - `/login` -> `ClientPortalController@login` - `/api/provision` -> `ProvisionController` - **Clean URLs**: Nginx rewrites all clean paths to `index.php` internally so no `.php` file extensions are exposed in the browser. --- ## 3. End-to-End Test Verification ```bash curl -kI https://portal.stayorix.com/ --> HTTP/2 200 OK (Clean Home) curl -kI https://portal.stayorix.com/login --> HTTP/2 200 OK (Clean Client Login) curl -ki -X POST 'https://portal.stayorix.com/login' -d 'tenant_identifier=royalparadise' --> HTTP/2 302 Found -> Location: https://royalparadise.soft.stayorix.com ```