Microweber

Un creador de sitios web de arrastrar y soltar y un CMS con funciones de comercio electrónico.

Accessing Microweber

  1. Abre tu navegador y visita: http://<SERVER_IP>
  2. Complete setup via web installer.

Archivos y directorios importantes

  • Directorio de instalación: /var/www/microweber
  • Configuración de Apache: /etc/apache2/sites-available/microweber.conf
  • Storage: /var/www/microweber/storage
  • Configuración: /var/www/microweber/config
  • User files: /var/www/microweber/userfiles

Habilitar SSL con un dominio

1. Dirija su dominio a la IP del servidor.

2. Edit Nginx config and replace ServerName <IP>; con tu dominio (<your-domain>):

vim /etc/apache2/sites-available/microweber.conf

3. Instalar Certbot:

apt install -y certbot python3-certbot-apache

4. Ejecuta el siguiente comando para generar un certificado válido de Let’s Encrypt:

certbot --apache --non-interactive --agree-tos --email [email protected] -d yourdomain.com

5. Restart Nginx to apply the changes:

systemctl restart apache2

6. Abre tu navegador y visita: https://yourdomain.com

Notas

  • Runs on Apache (port 80).
  • .htaccess / rewrite is enabled.
  • Control user registration in Microweber: Settings > Login & Register > Register options
  • Ensure www-data owns the entire Microweber folder and has full write access to storage, config, and userfiles so the application functions correctly.

Detalles de la solicitud