diff --git a/src/sample-config.php b/src/sample-config.php
index 0dea894..ad1654a 100644
--- a/src/sample-config.php
+++ b/src/sample-config.php
@@ -9,7 +9,7 @@
);
// This is used to create the join link
-$host = "https://scrumonline.local";
+$host = "https://localhost";
$cardSets = [
// 1, 3, 5, 8
diff --git a/src/templates/404.html b/src/templates/404.html
index f29bf2d..5b25195 100644
--- a/src/templates/404.html
+++ b/src/templates/404.html
@@ -1,5 +1,4 @@
-
Page Not Found
-
Sorry, but the page you were trying to view does not exist. This can also happen when you tried
- to access a private session directly. Please use the Sessions
- view to enter the password and access the session.
+
صفحه درخواستی شما وجود ندارد
+
برای بازگشت به صفحه اصلی اینجا را کلیک کنید و یا
+ به وب سایت من سر بزنید.
diff --git a/vagrant/increase_swap.sh b/vagrant/increase_swap.sh
deleted file mode 100644
index 2805519..0000000
--- a/vagrant/increase_swap.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/usr/bin/env bash
-sudo /bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024
-sudo /sbin/mkswap /var/swap.1
-sudo /sbin/swapon /var/swap.1
diff --git a/vagrant/provision.sh b/vagrant/provision.sh
deleted file mode 100644
index 50188ad..0000000
--- a/vagrant/provision.sh
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/usr/bin/env bash
-
-echo "########## Provisioning machine ##########"
-
-add-apt-repository -y ppa:ondrej/php
-
-apt-get update
-
-apt-get install -y cachefilesd
-echo "RUN=yes" > /etc/default/cachefilesd
-
-apt-get install -y apache2 git zip
-a2enmod rewrite
-a2enmod headers
-
-export LC_ALL="en_US.utf8"
-echo mysql-server mysql-server/root_password password passwd | debconf-set-selections
-echo mysql-server mysql-server/root_password_again password passwd | debconf-set-selections
-
-apt-get install -y mysql-server
-
-#allow mysql clients to login to root account from outside of localhost
-mysql -ppasswd -e "GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'passwd';"
-sed -i.bu 's/bind-address/#bind-address/' /etc/mysql/my.cnf
-service mysql restart
-
-mysqladmin create scrum_online -u root -ppasswd
-
-apt-get install -y php5.6 php5.6-curl php5.6-mysql php5.6-intl php5.6-mbstring php5.6-dev
-
-update-alternatives --set php /usr/bin/php5.6
-
-curl -sS https://getcomposer.org/installer | php
-mv composer.phar /usr/local/bin/composer
-
-if ! [ -L /var/www ]; then
- rm -rf /var/www
- mkdir /var/www
- ln -fs /vagrant/src /var/www/html
-fi
-
-echo "
" >> /etc/apache2/apache2.conf
-echo " Options Indexes FollowSymLinks" >> /etc/apache2/apache2.conf
-echo " AllowOverride All" >> /etc/apache2/apache2.conf
-echo " Require all granted" >> /etc/apache2/apache2.conf
-echo " SetEnv APP_ENV dev" >> /etc/apache2/apache2.conf
-echo " php_value memory_limit 64M" >> /etc/apache2/apache2.conf
-echo "" >> /etc/apache2/apache2.conf
-
-service apache2 restart
-
-echo "########## Provisioning finished ##########"
-
-ulimit -n 2048