<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| # /etc/nginx/sites-available/laravel | |
| server { | |
| listen 80; | |
| listen [::]:80 ipv6only=on; | |
| root /var/www/html/laravel/public; | |
| index index.php index.html index.htm; | |
| server_name laravel.dev; |
| set nocompatible | |
| call pathogen#infect() | |
| call vundle#rc() | |
| " let Vundle manage Vundle | |
| " required! | |
| Bundle 'gmarik/vundle' | |
| " My Bundles |
| set number | |
| colorscheme desert | |
| set tabstop=4 | |
| set softtabstop=4 | |
| set shiftwidth=4 | |
| set listchars=tab:>\ ,eol:¬ |
| <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 |