Skip to content

Instantly share code, notes, and snippets.

@sandeshsays
Forked from peterbrinck/Laravel on VestaCP.md
Created December 8, 2017 05:18
Show Gist options
  • Save sandeshsays/0147c8a313748675c2f9fb2909d8d81c to your computer and use it in GitHub Desktop.
Save sandeshsays/0147c8a313748675c2f9fb2909d8d81c to your computer and use it in GitHub Desktop.

Revisions

  1. @peterbrinck peterbrinck renamed this gist Aug 25, 2017. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. @peterbrinck peterbrinck revised this gist Aug 25, 2017. 1 changed file with 6 additions and 0 deletions.
    6 changes: 6 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    I've made a new web template to make Laravel work easily on VestaCP, and so I wouldn't have to change my Laravel installation, if I ever wanted to deploy it elsewhere.


    Each file should be put in `/usr/local/vesta/data/templates/web/apache2`

    Then, when you edit your domain/site, you can change the web template to Laravel and just upload your whole project into `public_html`
  3. @peterbrinck peterbrinck created this gist Aug 25, 2017.
    43 changes: 43 additions & 0 deletions laravel.stpl
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,43 @@
    <VirtualHost %ip%:%web_ssl_port%>

    ServerName %domain_idn%
    %alias_string%
    ServerAdmin %email%
    DocumentRoot %sdocroot%/public
    ScriptAlias /cgi-bin/ %home%/%user%/web/%domain%/cgi-bin/
    Alias /vstats/ %home%/%user%/web/%domain%/stats/
    Alias /error/ %home%/%user%/web/%domain%/document_errors/
    #SuexecUserGroup %user% %group%
    CustomLog /var/log/%web_system%/domains/%domain%.bytes bytes
    CustomLog /var/log/%web_system%/domains/%domain%.log combined
    ErrorLog /var/log/%web_system%/domains/%domain%.error.log
    <Directory %sdocroot%>
    AllowOverride All
    SSLRequireSSL
    Options +Includes -Indexes +ExecCGI
    php_admin_value open_basedir %docroot%:%home%/%user%/tmp
    php_admin_value upload_tmp_dir %home%/%user%/tmp
    php_admin_value session.save_path %home%/%user%/tmp
    </Directory>
    <Directory %home%/%user%/web/%domain%/stats>
    AllowOverride All
    </Directory>
    SSLEngine on
    SSLVerifyClient none
    SSLCertificateFile %ssl_crt%
    SSLCertificateKeyFile %ssl_key%
    %ssl_ca_str%SSLCertificateChainFile %ssl_ca%

    <IfModule mod_ruid2.c>
    RMode config
    RUidGid %user% %group%
    RGroups www-data
    </IfModule>
    <IfModule itk.c>
    AssignUserID %user% %group%
    </IfModule>

    IncludeOptional %home%/%user%/conf/web/s%web_system%.%domain%.conf*

    </VirtualHost>

    37 changes: 37 additions & 0 deletions laravel.tpl
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,37 @@
    <VirtualHost %ip%:%web_port%>

    ServerName %domain_idn%
    %alias_string%
    ServerAdmin %email%
    DocumentRoot %docroot%/public
    ScriptAlias /cgi-bin/ %home%/%user%/web/%domain%/cgi-bin/
    Alias /vstats/ %home%/%user%/web/%domain%/stats/
    Alias /error/ %home%/%user%/web/%domain%/document_errors/
    #SuexecUserGroup %user% %group%
    CustomLog /var/log/%web_system%/domains/%domain%.bytes bytes
    CustomLog /var/log/%web_system%/domains/%domain%.log combined
    ErrorLog /var/log/%web_system%/domains/%domain%.error.log
    <Directory %docroot%>
    AllowOverride All
    Options +Includes -Indexes +ExecCGI
    php_admin_value open_basedir %docroot%:%home%/%user%/tmp
    php_admin_value upload_tmp_dir %home%/%user%/tmp
    php_admin_value session.save_path %home%/%user%/tmp
    </Directory>
    <Directory %home%/%user%/web/%domain%/stats>
    AllowOverride All
    </Directory>

    <IfModule mod_ruid2.c>
    RMode config
    RUidGid %user% %group%
    RGroups www-data
    </IfModule>
    <IfModule itk.c>
    AssignUserID %user% %group%
    </IfModule>

    IncludeOptional %home%/%user%/conf/web/%web_system%.%domain%.conf*

    </VirtualHost>