1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | $ sudo apt update $ clear $ sudo apt install apache2 $ cd /etc/apache2/sites-available/ $ clear $ ls $ sudo vi ridiculous-inc.com.conf $ cd /var/www $ sudo git clone https://github.com/ridiculous-ijquery-todo.git ridic $ sudo a2ensite ridiculous-inc.com.conf $ sudo service apache2 restart $ sudo apt-get update $ clear $ sudo apt-get install software-properties-common $ sudo add-apt-repository ppa:certbot/certbot $ clear $ sudo apt-get update $ sudo apt-get install python-certbot-apache $ clear $ sudo certbot --apache $ history |
1 2 3 4 5 6 7 8 9 10 | <VirtualHost *:80> DocumentRoot /var/www/ridic ServerName ridiculous-inc.com <Directory "/var/www/ridic"> allow from all AllowOverride All Order allow,deny Options +Indexes </Directory> </VirtualHost> |
1 2 3 4 5 6 7 8 | <VirtualHost *:80> ServerName api.screencapdictionary.com <Location "/"> ProxyPreserveHost On ProxyPass http://localhost:5000/ ProxyPassReverse http://localhost:5000/ </Location> </VirtualHost> |
No comments:
Post a Comment