├── 404.html ├── Gemfile ├── Gemfile.lock ├── README.md ├── _categories ├── android.md ├── announcement.md ├── keamanan.md ├── linux.md ├── mikrotik.md ├── openwrt.md └── routers.md ├── _config.yml ├── _data ├── devices.yml ├── documentation.yml ├── files.yml └── posts.json ├── _includes ├── alert-danger.html ├── alert-dark.html ├── alert-info.html ├── alert-light.html ├── alert-primary.html ├── alert-secondary.html ├── alert-success.html ├── alert-warning.html ├── coding.html ├── comments.html ├── footer.html ├── head.html ├── iklan.html ├── javascript.html ├── navbar.html ├── sidebar.html ├── toc.html ├── tos.html └── youtube.html ├── _layouts ├── cari.html ├── category.html ├── default.html ├── dokuments.html ├── openwrts.html ├── page.html ├── post.html └── yt.html ├── _posts └── 2024-11-24-wellcome-to-masterwifinetworksolution.md ├── ads.txt ├── assets ├── css │ ├── custom.css │ └── syntax.css ├── images │ ├── 20241029_041810.png │ ├── banner.jpg │ ├── command-linux.jpg │ ├── favicon.ico │ ├── hs-dan-pppoe.jpg │ ├── install-tailscale-openwrt.jpg │ ├── pengenalan-linux.jpg │ ├── setting-cpe220.jpg │ └── setting-wr840n.jpg └── js │ ├── adblock-check.js │ └── anti-adblock.js ├── categories.html ├── feed.xml ├── googled41425154ba52776.html ├── index.html ├── marketplace.html ├── openwrt.html ├── openwrt └── x86.html ├── pages ├── contact.html ├── disclaimer.html ├── documentation.html ├── donate.html ├── files.html ├── privacy-policy.html ├── profile.html ├── safelink │ ├── download-config-simaster-meta.html │ ├── download-termux-autoplane.html │ ├── download-termux-boot.html │ └── download-termux.html ├── search.html ├── sitemap.html └── videos.html ├── robot.txt ├── sitemap.xml └── update.sh /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Sorry, but the page you were trying to view does not exist. Try searching for it or looking at the URL to see if it looks correct.
48 | Back To Home 49 | 50 | 51 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'jekyll-feed' 4 | gem 'jekyll-seo-tag' 5 | gem 'jekyll-paginate' 6 | gem 'jekyll-sitemap' 7 | gem 'jekyll-toc' 8 | gem 'jekyll-reading-time' 9 | gem 'jekyll-time-to-read' 10 | gem 'jekyll-google_search_console_verification_file' 11 | gem 'faraday-retry' 12 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | addressable (2.8.7) 5 | public_suffix (>= 2.0.2, < 7.0) 6 | base64 (0.2.0) 7 | bigdecimal (3.1.9) 8 | colorator (1.1.0) 9 | concurrent-ruby (1.3.5) 10 | csv (3.3.2) 11 | em-websocket (0.5.3) 12 | eventmachine (>= 0.12.9) 13 | http_parser.rb (~> 0) 14 | eventmachine (1.2.7) 15 | faraday (2.12.2) 16 | faraday-net_http (>= 2.0, < 3.5) 17 | json 18 | logger 19 | faraday-net_http (3.4.0) 20 | net-http (>= 0.5.0) 21 | faraday-retry (2.2.1) 22 | faraday (~> 2.0) 23 | ffi (1.17.1) 24 | ffi (1.17.1-aarch64-linux-gnu) 25 | ffi (1.17.1-aarch64-linux-musl) 26 | ffi (1.17.1-arm-linux-gnu) 27 | ffi (1.17.1-arm-linux-musl) 28 | ffi (1.17.1-arm64-darwin) 29 | ffi (1.17.1-x86-linux-gnu) 30 | ffi (1.17.1-x86-linux-musl) 31 | ffi (1.17.1-x86_64-darwin) 32 | ffi (1.17.1-x86_64-linux-gnu) 33 | ffi (1.17.1-x86_64-linux-musl) 34 | forwardable-extended (2.6.0) 35 | google-protobuf (4.29.3) 36 | bigdecimal 37 | rake (>= 13) 38 | google-protobuf (4.29.3-aarch64-linux) 39 | bigdecimal 40 | rake (>= 13) 41 | google-protobuf (4.29.3-arm64-darwin) 42 | bigdecimal 43 | rake (>= 13) 44 | google-protobuf (4.29.3-x86-linux) 45 | bigdecimal 46 | rake (>= 13) 47 | google-protobuf (4.29.3-x86_64-darwin) 48 | bigdecimal 49 | rake (>= 13) 50 | google-protobuf (4.29.3-x86_64-linux) 51 | bigdecimal 52 | rake (>= 13) 53 | http_parser.rb (0.8.0) 54 | i18n (1.14.7) 55 | concurrent-ruby (~> 1.0) 56 | jekyll (4.4.1) 57 | addressable (~> 2.4) 58 | base64 (~> 0.2) 59 | colorator (~> 1.0) 60 | csv (~> 3.0) 61 | em-websocket (~> 0.5) 62 | i18n (~> 1.0) 63 | jekyll-sass-converter (>= 2.0, < 4.0) 64 | jekyll-watch (~> 2.0) 65 | json (~> 2.6) 66 | kramdown (~> 2.3, >= 2.3.1) 67 | kramdown-parser-gfm (~> 1.0) 68 | liquid (~> 4.0) 69 | mercenary (~> 0.3, >= 0.3.6) 70 | pathutil (~> 0.9) 71 | rouge (>= 3.0, < 5.0) 72 | safe_yaml (~> 1.0) 73 | terminal-table (>= 1.8, < 4.0) 74 | webrick (~> 1.7) 75 | jekyll-feed (0.17.0) 76 | jekyll (>= 3.7, < 5.0) 77 | jekyll-google_search_console_verification_file (1.1.0) 78 | jekyll (>= 3.7, < 5.0) 79 | jekyll-paginate (1.1.0) 80 | jekyll-reading-time (0.1.0) 81 | jekyll 82 | jekyll-sass-converter (3.0.0) 83 | sass-embedded (~> 1.54) 84 | jekyll-seo-tag (2.8.0) 85 | jekyll (>= 3.8, < 5.0) 86 | jekyll-sitemap (1.4.0) 87 | jekyll (>= 3.7, < 5.0) 88 | jekyll-time-to-read (0.1.2) 89 | jekyll 90 | jekyll-toc (0.19.0) 91 | jekyll (>= 3.9) 92 | nokogiri (~> 1.12) 93 | jekyll-watch (2.2.1) 94 | listen (~> 3.0) 95 | json (2.9.1) 96 | kramdown (2.5.1) 97 | rexml (>= 3.3.9) 98 | kramdown-parser-gfm (1.1.0) 99 | kramdown (~> 2.0) 100 | liquid (4.0.4) 101 | listen (3.9.0) 102 | rb-fsevent (~> 0.10, >= 0.10.3) 103 | rb-inotify (~> 0.9, >= 0.9.10) 104 | logger (1.6.5) 105 | mercenary (0.4.0) 106 | mini_portile2 (2.8.8) 107 | net-http (0.6.0) 108 | uri 109 | nokogiri (1.18.2) 110 | mini_portile2 (~> 2.8.2) 111 | racc (~> 1.4) 112 | nokogiri (1.18.2-aarch64-linux-gnu) 113 | racc (~> 1.4) 114 | nokogiri (1.18.2-aarch64-linux-musl) 115 | racc (~> 1.4) 116 | nokogiri (1.18.2-arm-linux-gnu) 117 | racc (~> 1.4) 118 | nokogiri (1.18.2-arm-linux-musl) 119 | racc (~> 1.4) 120 | nokogiri (1.18.2-arm64-darwin) 121 | racc (~> 1.4) 122 | nokogiri (1.18.2-x86_64-darwin) 123 | racc (~> 1.4) 124 | nokogiri (1.18.2-x86_64-linux-gnu) 125 | racc (~> 1.4) 126 | nokogiri (1.18.2-x86_64-linux-musl) 127 | racc (~> 1.4) 128 | pathutil (0.16.2) 129 | forwardable-extended (~> 2.6) 130 | public_suffix (6.0.1) 131 | racc (1.8.1) 132 | rake (13.2.1) 133 | rb-fsevent (0.11.2) 134 | rb-inotify (0.11.1) 135 | ffi (~> 1.0) 136 | rexml (3.4.0) 137 | rouge (4.5.1) 138 | safe_yaml (1.0.5) 139 | sass-embedded (1.83.4) 140 | google-protobuf (~> 4.29) 141 | rake (>= 13) 142 | sass-embedded (1.83.4-aarch64-linux-android) 143 | google-protobuf (~> 4.29) 144 | sass-embedded (1.83.4-aarch64-linux-gnu) 145 | google-protobuf (~> 4.29) 146 | sass-embedded (1.83.4-aarch64-linux-musl) 147 | google-protobuf (~> 4.29) 148 | sass-embedded (1.83.4-aarch64-mingw-ucrt) 149 | google-protobuf (~> 4.29) 150 | sass-embedded (1.83.4-arm-linux-androideabi) 151 | google-protobuf (~> 4.29) 152 | sass-embedded (1.83.4-arm-linux-gnueabihf) 153 | google-protobuf (~> 4.29) 154 | sass-embedded (1.83.4-arm-linux-musleabihf) 155 | google-protobuf (~> 4.29) 156 | sass-embedded (1.83.4-arm64-darwin) 157 | google-protobuf (~> 4.29) 158 | sass-embedded (1.83.4-riscv64-linux-android) 159 | google-protobuf (~> 4.29) 160 | sass-embedded (1.83.4-riscv64-linux-gnu) 161 | google-protobuf (~> 4.29) 162 | sass-embedded (1.83.4-riscv64-linux-musl) 163 | google-protobuf (~> 4.29) 164 | sass-embedded (1.83.4-x86_64-cygwin) 165 | google-protobuf (~> 4.29) 166 | sass-embedded (1.83.4-x86_64-darwin) 167 | google-protobuf (~> 4.29) 168 | sass-embedded (1.83.4-x86_64-linux-android) 169 | google-protobuf (~> 4.29) 170 | sass-embedded (1.83.4-x86_64-linux-gnu) 171 | google-protobuf (~> 4.29) 172 | sass-embedded (1.83.4-x86_64-linux-musl) 173 | google-protobuf (~> 4.29) 174 | terminal-table (3.0.2) 175 | unicode-display_width (>= 1.1.1, < 3) 176 | unicode-display_width (2.6.0) 177 | uri (1.0.2) 178 | webrick (1.9.1) 179 | 180 | PLATFORMS 181 | aarch64-linux 182 | aarch64-linux-android 183 | aarch64-linux-gnu 184 | aarch64-linux-musl 185 | aarch64-mingw-ucrt 186 | arm-linux-androideabi 187 | arm-linux-gnu 188 | arm-linux-gnueabihf 189 | arm-linux-musl 190 | arm-linux-musleabihf 191 | arm64-darwin 192 | riscv64-linux-android 193 | riscv64-linux-gnu 194 | riscv64-linux-musl 195 | ruby 196 | x86-linux 197 | x86-linux-gnu 198 | x86-linux-musl 199 | x86_64-cygwin 200 | x86_64-darwin 201 | x86_64-linux 202 | x86_64-linux-android 203 | x86_64-linux-gnu 204 | x86_64-linux-musl 205 | 206 | DEPENDENCIES 207 | faraday-retry 208 | jekyll-feed 209 | jekyll-google_search_console_verification_file 210 | jekyll-paginate 211 | jekyll-reading-time 212 | jekyll-seo-tag 213 | jekyll-sitemap 214 | jekyll-time-to-read 215 | jekyll-toc 216 | 217 | BUNDLED WITH 218 | 2.5.22 219 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # webserver 2 | -------------------------------------------------------------------------------- /_categories/android.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "android" 4 | --- -------------------------------------------------------------------------------- /_categories/announcement.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "announcement" 4 | --- 5 | -------------------------------------------------------------------------------- /_categories/keamanan.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "keamanan" 4 | --- 5 | -------------------------------------------------------------------------------- /_categories/linux.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "linux" 4 | --- -------------------------------------------------------------------------------- /_categories/mikrotik.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "mikrotik" 4 | --- 5 | -------------------------------------------------------------------------------- /_categories/openwrt.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "openwrt" 4 | --- 5 | -------------------------------------------------------------------------------- /_categories/routers.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: "routers" 4 | --- 5 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: Clash Master 2 | email: myarachma92@gmail.com 3 | author: Muhammad Yusuf 4 | description: >- # Deskripsi situs 5 | Master Wifi Network Solution adalah tempat solusi koneksi jaringan anda. 6 | url: "https://masterwifinetworksolution.github.io" 7 | baseurl: "" 8 | permalink: /:categories/:title/ 9 | paginate: 6 10 | paginate_path: "/page/:num/" 11 | 12 | collections: 13 | posts: 14 | output: true 15 | categories: 16 | output: true 17 | permalink: /categories/:name/ 18 | 19 | defaults: 20 | - scope: 21 | path: "" 22 | type: "posts" 23 | values: 24 | layout: "post" 25 | author: "Muhammad Yusuf" 26 | comments: true 27 | - scope: 28 | path: "" 29 | type: "pages" 30 | values: 31 | layout: "page" 32 | author: "Muhammad Yusuf" 33 | comments: false 34 | 35 | plugins: 36 | - jekyll-feed 37 | - jekyll-seo-tag 38 | - jekyll-paginate 39 | - jekyll-sitemap 40 | - jekyll-toc 41 | - jekyll-reading-time 42 | - jekyll-time-to-read 43 | - jekyll-google_search_console_verification_file 44 | 45 | toc: 46 | min_level: 2 47 | max_level: 6 48 | no_toc_section_class: 'no_toc' 49 | list_class: 'toc-list' 50 | sublist_class: 'toc-sublist' 51 | item_class: 'toc-list-item' 52 | link_class: 'toc-link' 53 | heading_levels: [2, 3, 4, 5, 6] 54 | exclude_from_toc: [] 55 | 56 | assets: 57 | css: "/assets/css" 58 | 59 | data_files: 60 | - files 61 | 62 | data_documentation: 63 | - documentation 64 | 65 | include: 66 | - assets 67 | 68 | # Konfigurasi Kramdown untuk sintaks highlighter 69 | markdown: kramdown 70 | highlighter: rouge 71 | kramdown: 72 | syntax_highlighter: rouge 73 | syntax_highlighter_opts: 74 | css_class: 'highlight' # Kelas CSS untuk highlighter 75 | span: 76 | line_numbers: true # Aktifkan nomor baris 77 | block: 78 | line_numbers: true # Aktifkan nomor baris untuk blok kode 79 | start_line: 1 # Mulai nomor baris dari 1 80 | 81 | # Contoh konfigurasi 82 | category_dir: categories 83 | -------------------------------------------------------------------------------- /_data/devices.yml: -------------------------------------------------------------------------------- 1 | - image: 2 | name: sha256sums 3 | format: sha 4 | size: 1KB 5 | link: https://drive.google.com/file/d/11uPtPWTwzEQxrZ-D-qZwh5-sw9GZ7Yz3/view?usp=sharing 6 | category: x86 7 | - image: 8 | name: profiles.json 9 | format: json 10 | size: 2KB 11 | link: https://drive.google.com/file/d/1WOFfuzFfjgZO_AirhwhgpUe2-4fIq5ls/view?usp=sharing 12 | category: x86 13 | - image: 14 | name: openwrt-23.05.5-x86-64-generic.manifest 15 | format: manifest 16 | size: 11KB 17 | link: https://drive.google.com/file/d/1iY-XpjzdwuI6tTG0UbIJk1tBPB9rYcIr/view?usp=sharing 18 | category: x86 19 | - image: 20 | name: openwrt-23.05.5-x86-64-generic-squashfs-rootfs.img.gz 21 | format: gzip 22 | size: 85.7MB 23 | link: https://drive.google.com/file/d/1JQVXpJb3f0S2d5hBLn3_6loUL0gRsLXZ/view?usp=sharing 24 | category: x86 25 | - image: 26 | name: openwrt-23.05.5-x86-64-generic-squashfs-combined.img.gz 27 | format: gzip 28 | size: 91.4MB 29 | link: https://drive.google.com/file/d/16WHh0GaXlyUeLQiWPL8Uh1hI0Cr_fl84/view?usp=sharing 30 | category: x86 31 | - image: 32 | name: openwrt-23.05.5-x86-64-generic-squashfs-combined-efi.img.gz 33 | format: gzip 34 | size: 91.6MB 35 | link: https://drive.google.com/file/d/1o4gcwuJ83QU13X60dfzzonLbQ2D2kmuW/view?usp=sharing 36 | category: x86 37 | - image: 38 | name: openwrt-23.05.5-x86-64-generic-rootfs.tar.gz 39 | format: gzip 40 | size: 106.7MB 41 | link: https://drive.google.com/file/d/1pD2lHNStmMLRsCQwEnhvRSgRp4THm42u/view?usp=sharing 42 | category: x86 43 | - image: 44 | name: openwrt-23.05.5-x86-64-generic-kernel.bin 45 | format: bin 46 | size: 5.4MB 47 | link: https://drive.google.com/file/d/1JjT16wLNPSNGkG4UFIWJaVERtks88uK8/view?usp=sharing 48 | category: x86 49 | - image: 50 | name: openwrt-23.05.5-x86-64-generic-ext4-rootfs.img.gz 51 | format: gzip 52 | size: 110.5MB 53 | link: https://drive.google.com/file/d/1YAT98dJyQr316d4vbd2Rfq0ZeRGynZIL/view?usp=sharing 54 | category: x86 55 | - image: 56 | name: openwrt-23.05.5-x86-64-generic-ext4-combined.img.gz 57 | format: gzip 58 | size: 114.2MB 59 | link: https://drive.google.com/file/d/1UJ_pUqV2O2-_4-q-On7_diRuc-uctUB4/view?usp=sharing 60 | category: x86 61 | - image: 62 | name: openwrt-23.05.5-x86-64-generic-ext4-combined-efi.img.gz 63 | format: gzip 64 | size: 114.4MB 65 | link: https://drive.google.com/file/d/14FrqcxUTLX1adnVzfM_jToVPeIXOgKdr/view?usp=sharing 66 | category: x86 67 | -------------------------------------------------------------------------------- /_data/documentation.yml: -------------------------------------------------------------------------------- 1 | - name: "Install openclash" 2 | type: "openwrt" 3 | link: "#" 4 | - name: "Install passwall" 5 | type: "openwrt" 6 | link: "#" 7 | - name: "Install mihomo" 8 | type: "openwrt" 9 | link: "#" 10 | - name: "Install libernet" 11 | type: "openwrt" 12 | link: "#" 13 | - name: "Install v2raya" 14 | type: "openwrt" 15 | link: "#" 16 | - name: "Account clash" 17 | type: "clash" 18 | link: "#" 19 | - name: "Rule clash" 20 | type: "clash" 21 | link: "#" 22 | - name: "Proxy provider clash" 23 | type: "clash" 24 | link: "#" 25 | - name: "Proxy group clash" 26 | type: "clash" 27 | link: "#" 28 | - name: "Rule clash" 29 | type: "clash" 30 | link: "#" 31 | - name: "Rule provider clash" 32 | type: "clash" 33 | link: "#" -------------------------------------------------------------------------------- /_data/files.yml: -------------------------------------------------------------------------------- 1 | - name: "stream" 2 | type: "yaml" 3 | size: "1.10K" 4 | link: "https://raw.githubusercontent.com/masterwifinetworksolution/rule_provider/refs/heads/master/stream.yaml" 5 | - name: "sosmed" 6 | type: "yaml" 7 | size: "713B" 8 | link: "https://raw.githubusercontent.com/masterwifinetworksolution/rule_provider/refs/heads/master/sosmed.yaml" 9 | - name: "game" 10 | type: "yaml" 11 | size: "2.65K" 12 | link: "https://raw.githubusercontent.com/masterwifinetworksolution/rule_provider/refs/heads/master/game.yaml" 13 | - name: "shop" 14 | type: "yaml" 15 | size: "626B" 16 | link: "https://raw.githubusercontent.com/masterwifinetworksolution/rule_provider/refs/heads/master/shop.yaml" 17 | - name: "bank" 18 | type: "yaml" 19 | size: "1012B" 20 | link: "https://raw.githubusercontent.com/masterwifinetworksolution/rule_provider/refs/heads/master/bank.yaml" -------------------------------------------------------------------------------- /_data/posts.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "title": "Panduan Lengkap Penggunaan Tenda O3 Router Outdoor", "url": "/pengaturan/panduan-lengkap-penggunaan-tenda-o3-router-outdoor/" }, 3 | { "title": "Panduan Lengkap Penggunaan TP-Link CPE220", "url": "/pengaturan/panduan-tplink-wr840n/" }, 4 | // Tambahkan lebih banyak postingan di sini 5 | ] 6 | -------------------------------------------------------------------------------- /_includes/alert-danger.html: -------------------------------------------------------------------------------- 1 | 2 |7 | {{ include.code }} 8 |9 |