Idadelveloper / portfolio-site

Ida Delphine's portfolio
0 stars 0 forks source link

portfolio-site

Ida Delphine's portfolio

Running the server

Running the client

Building the site for deployment

Deployment on the server

For a Linux/Ubuntu server running apache2 web server, follow these steps to deploy the site

sudo a2enmod rewrite
<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>
sudo cp -r build/. /var/www/html
sudo systemctl restart apache2