Skip to content

Instantly share code, notes, and snippets.

@phpdave
Created July 8, 2015 15:21
Show Gist options
  • Save phpdave/dbfc3cd8bd777cd34b79 to your computer and use it in GitHub Desktop.
Save phpdave/dbfc3cd8bd777cd34b79 to your computer and use it in GitHub Desktop.
<VirtualHost *:81>
DocumentRoot /var/www/xxx1
<Directory "/var/www/xxx1">
AllowOverride All
php_value session.save_path "/var/mysessionforproject_1"
</Directory>
</VirtualHost>
<VirtualHost *:82>
DocumentRoot /var/www/xxx2
<Directory "/var/www/xxx2">
AllowOverride All
php_value session.save_path "/var/mysessionforproject_2"
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment