hi \i am qayoom how r u
Popular posts from this blog
Create PPPOE(DSL) Connection on Linux I had faced lot of hurdle while setting pppoe connection on Ubuntu 18.4LTs. interesting thing is that not found any reliable link on google for that,here is step wise detail of setting dsl connection on Linux Prerequisites: ANI is my service provider Connection name is provide by ISP Username and password provided by ISP (ANI) IP and domain also provide by ISP Step 1create connection name: keenable@xxx:~$ nmcli con edit type pppoe con-name ANI Step2: Add user name. nmcli> set pppoe.username aa0003@elixir Step3:nmcli> set pppoe.password xxxxx step:Add service nmcli> set pppoe.servicename ANI Step4:set ip in network>ani>setting Step5: check the user name and other detail.and edit In ipv4 we can provide ip and domain which provided by isp
Configure Apache with index,html and index.php Step1: Install Apache Step2:Check status Step 3 Check on browser. Step4: Now set up Apache virtual host on Ubuntu keenable@isgec:~$ sudo mkdir -p /var/www/example.com/public_html Step5 Edit index.html in public_html folder,with following config. =========================== <!DOCTYPE html> <html lang= "en" dir= "ltr" > <head> <meta charset= "utf-8" > <title>Welcome to example.com</title> </head> <body> <h1>Success! example.com home page!</h1> </body> </html> =========================== Step6:create virtual host keenable@isgec:/etc/apache2/sites-available$ sudo vim example.com.conf ============================ <VirtualHost *: 80 > ServerName example.com ServerAlias www.example.com ServerAdmin webmaster@example.com DocumentRoo...
Comments
Post a Comment