Apache
Point the virtual host document root to public/. Make sure mod_rewrite is enabled and Laravel rewrite rules are allowed.
Production upload
Use these steps when moving YunikEngine from local development to production hosting.
Point the virtual host document root to public/. Make sure mod_rewrite is enabled and Laravel rewrite rules are allowed.
server {
server_name example.com;
root /path/to/YunikWebsiteMaker/public;
index index.php;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass unix:/run/php/php8.2-fpm.sock;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
}
}open https://your-domain.com/install
complete database, administrator, and demo content setupThe buyer package includes Composer dependencies and compiled assets for the browser installer. Use Composer, npm, and Laravel cache commands only when manually deploying, refreshing dependencies, or rebuilding assets.
vendor/ for one-click browser installation.composer.json and composer.lock.package.json and package-lock.json..env.example..envanto_docs..env and private credentials.node_modules/.