Skip to content

Instantly share code, notes, and snippets.

View backent's full-sized avatar

Malik backent

View GitHub Profile
@backent
backent / apache2_vhost_config_vuejs_dist
Created April 24, 2021 02:19 — forked from 7rin0/apache2_vhost_config_vuejs_dist
VueJS: Apache / Nginx vhost config examples
<VirtualHost *:80>
DocumentRoot "/home/dev/server/project/dist/"
ServerName vuejs.project.local
<Directory /home/dev/server/project/dist/>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Require all granted
Order allow,deny
allow from all