git init
or
| # place in [app]/public so it gets compiled into the dist folder | |
| Options FollowSymLinks | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.html$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.html [L] |
| #!/bin/sh | |
| # ./convert_ploop_to_simfs.sh VEID | |
| # chmod +x convert_ploop_to_simfs.sh | |
| rsync_options='-aHAX --progress --stats --numeric-ids --delete' | |
| partition='vz' | |
| if [ ! -e /etc/vz/conf/$1.conf ]; then | |
| echo "Virtual server configuration file: /etc/vz/conf/$1.conf does not exist." | |
| exit 1 | |
| fi | |
| if [ ! -d /$partition/private/$1/root.hdd ]; then |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| default_type text/html; | |
| access_log /dev/stdout; | |
| sendfile on; | |
| keepalive_timeout 65; |