Let's say you want to host domains first.com and second.com.
Create folders for their files:
| #!/bin/bash | |
| set -euo pipefail | |
| # Directory setup | |
| APP_DIR="${HOME}/Applications" | |
| ICON_DIR="${HOME}/.local/share/icons" | |
| DESKTOP_DIR="${HOME}/.local/share/applications" | |
| BIN_DIR="${HOME}/.local/bin" |
| <!DOCTYPE html> | |
| <html data-theme="cupcake" lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>BusPro</title> | |
| <base href="/" /> | |
| <meta content="width=device-width, initial-scale=1" name="viewport" /> | |
| </head> | |
| <body> |
| <script type="application/ld+json"> | |
| { | |
| "@context": "http://schema.org", | |
| "@type": "LocalBusiness", | |
| "name": "Example Company", | |
| "image": "https://www.example.com/logo.png", | |
| "url": "https://www.example.com/", | |
| "telephone": "+1-123-456-7890", | |
| "address": { | |
| "@type": "PostalAddress", |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |
| <url> | |
| <loc>https://www.example.com/</loc> | |
| <lastmod>2023-01-29</lastmod> | |
| <changefreq>daily</changefreq> | |
| <priority>1.0</priority> | |
| </url> | |
| <url> | |
| <loc>https://www.example.com/services/study-abroad-consultancy</loc> |
| Quick overview - | |
| 1. Exercise | |
| 2. Good Sleep | |
| 3. Drink a lot of fluid to save your eyes | |
| 4. Have exposure to sunlight during your non-productive hours such mealtime | |
| 5. Keep back straight while sitting on chair | |
| 6. Fix a goal and then reverse engineer the timelines and technical effort | |
| 7. Have result-oriented goals (products which u can really ship) | |
| 8. Keep it simple. (Write a simple code which is easy to read and debug which helps in shipping product faster) | |
| 9. Don’t get disturbed during your highest concentration period of day by setting expectations with people around us |
| version: '3' | |
| services: | |
| node1: | |
| image: mongo | |
| ports: | |
| - 30001:27071 | |
| volumes: | |
| - $HOME/mongoclusterdata/node1:/data/db | |
| networks: |
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( |
| worker_processes 1; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| include mime.types; | |
| default_type application/octet-stream; | |
| sendfile on; |
| <div> | |
| <div class="row"> | |
| <div class="col-xl-12 col-lg-12"> | |
| <ul> | |
| <li *ngFor="let activity of activities$">...</li> | |
| </ul> | |
| <nz-pagination [nzPageIndex]="nextPage" [nzPageSize]="limit" |