Technology

  • Technology

    Cara Install Rocket Chat Server

    Install OS, dalam hal ini saya menggunakan Ubuntu server 16.04 login sebagai root ketik : snap install rocketchat-server Taraa… Server chat sudah siap dengan enginee rocket.chat and bisa mengaksesnya dengan link : http://<server-ip>:3000 Silahkan explore fiture yang ada Supaya keren tidak menggunakan port :3000  http://localhost:3000 menjadi https://your_hostname.comkita bisa mengakalinya dengan nginx, begini caranya : Pada ubuntu server ketik : sudo apt-get update sudo apt-get install nginx sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/nginx/certificate.key -out /etc/nginx/certificate.crt akan keluar form isi seperti dibawah ini : * Isi saja dengan kebutuhan / kemauan anda Country Name (2 letter code) [AU]:ID State or Province Name (full name) [Some-State]: DKI Jakarta…

  • Technology

    Permasalahan Permalink wordpress apache2 ubuntu server virtualmin

    Permalink Problem Jika anda menggunakan WordPress, yang dimasukan kedalam Ubuntu Server, Virtualmin Web Hosting, dan Apache2 Mungkin ini solusi jika terjadi masalah di Permalink : Inside of this file, we want to change all things. sudo nano /etc/apache2/sites-available/000-default.conf 000-default.conf – should look something like this: <VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /var/www/html <Directory /var/www/html/> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost> When you are finished, save and close the file. Next, we need to enable the rewrite module, which allows you to modify URLs. You can do this by typing: sudo a2enmod rewrite After you have made these changes, restart Apache: sudo service…