{"id":690,"date":"2020-03-26T01:12:43","date_gmt":"2020-03-25T18:12:43","guid":{"rendered":"https:\/\/www.linuxid.net\/post\/?p=690"},"modified":"2025-04-18T15:21:00","modified_gmt":"2025-04-18T08:21:00","slug":"cara-install-dan-konfigurasi-wondercms-di-apache-centos-8","status":"publish","type":"post","link":"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/","title":{"rendered":"Cara Install dan Konfigurasi WonderCMS di Apache CentOS 8"},"content":{"rendered":"<p>WonderCMS adalah sistem manajemen konten (CMS) free, open-source, sederhana dan ringan untuk membangun situs web dan blog sederhana. CMS Ini termasuk dalam kategori <em>flat-file CMS<\/em> yang mana tidak memerlukan database apa pun.<\/p>\n<p>Proses instalasi sangat sederhana dan tidak memerlukan konfigurasi awal. Ini menawarkan serangkaian fitur termasuk, dukungan WYSIWYG, CSS framework yang fleksibel, SEO friendly dan banyak lagi.<\/p>\n<p>Dalam tutorial ini, kami akan menunjukkan kepada Anda bagaimana menginstal WonderCMS pada CentOS 8 dan mengamankannya dengan Let\u2019s Encrypt SSL.<\/p>\n<h2>Prasyarat<\/h2>\n<h2>Install Apache dan PHP<\/h2>\n<p>Pertama, install Apache webserver, PHP, dan ekstensi PHP lainnya dengan perintah berikut:<\/p>\n<pre>sudo dnf install httpd php php-mysqlnd php-curl php-opcache php-xml php-xmlrpc php-gd php-mbstring php-zip php-json wget unzip git -y<\/pre>\n<p>Setelah instalasi selesai, buka file <code>php.ini<\/code> dan ubah beberapa pengaturan:<\/p>\n<pre>sudo nano \/etc\/php.ini<\/pre>\n<p>Ubah nilai sesuai kebutuhan Anda:<\/p>\n<pre>memory_limit = 128M&#13;\npost_max_size = 32M&#13;\nupload_max_filesize = 16M&#13;\nmax_execution_time = 300&#13;\ndate.timezone = <span style=\"background-color: #ccffff;\">Asia\/Jakarta&#13;\n<\/span><\/pre>\n<p>Simpan dan tutup file setelah Anda selesai. Kemudian, <a href=\"https:\/\/www.linuxid.net\/post\/cara-manajemen-server-apache-start-stop-atau-restart\/\">start Apache<\/a> dan aktifkan untuk memulai setelah sistem reboot dengan perintah berikut:<\/p>\n<pre>systemctl start httpd&#13;\n systemctl enable httpd<\/pre>\n<h2>Download WonderCMS<\/h2>\n<p>Pertama, download versi terbaru WonderCMS dari repositori Git:<\/p>\n<pre>cd \/var\/www\/html&#13;\n git clone https:\/\/github.com\/robiso\/wondercms.git<\/pre>\n<p>Setelah download selesai, <a href=\"https:\/\/www.linuxid.net\/post\/cara-mengubah-file-permissions-dengan-chmod-di-linux\/\">berikan izin<\/a> dan <a href=\"https:\/\/www.linuxid.net\/post\/tutorial-perintah-chown-di-terminal-linux-dan-penggunaan\/\">kepemilikan<\/a> yang sesuai ke direktori yang diunduh dengan perintah berikut:<\/p>\n<pre>chown -R apache:apache \/var\/www\/html\/wondercms&#13;\n chmod -R 775 \/var\/www\/html\/wondercms<\/pre>\n<h2>Konfigurasikan Apache untuk WonderCMS<\/h2>\n<p>Pertama, buat file konfigurasi virtual host Apache baru untuk WonderCMS dengan perintah berikut:<\/p>\n<pre>sudo nano \/etc\/httpd\/conf.d\/wondercms.conf<\/pre>\n<p>Tambahkan baris berikut:<\/p>\n<pre>&lt;VirtualHost *:80&gt;&#13;\n  ServerName <span style=\"background-color: #ccffff;\">namadomain.com<\/span>&#13;\n  DirectoryIndex index.php&#13;\n  DocumentRoot \/var\/www\/html\/wondercms  &#13;\n  Redirect \/wondercms\/loginURL \/loginURL&#13;\n&#13;\n  ErrorLog \/var\/log\/httpd\/<span style=\"background-color: #ccffff;\">namadomain.com<\/span>-error.log&#13;\n  CustomLog \/var\/log\/httpd\/<span style=\"background-color: #ccffff;\">namadomain.com<\/span>-access.log combined&#13;\n&#13;\n  &lt;Directory \/var\/www\/html\/wondercms&gt;&#13;\n      Options FollowSymLinks &#13;\n      AllowOverride All&#13;\n      Require all granted&#13;\n  &lt;\/Directory&gt;&#13;\n&#13;\n&lt;\/VirtualHost&gt;&#13;\n<\/pre>\n<p>Simpan dan tutup file. Kemudian, <a href=\"https:\/\/www.linuxid.net\/post\/cara-manajemen-server-apache-start-stop-atau-restart\/\">restart Apache<\/a> dengan perintah berikut:<\/p>\n<pre>systemctl restart httpd<\/pre>\n<p>Anda juga dapat memeriksa status layanan Apache dengan perintah berikut:<\/p>\n<pre>systemctl status httpd<\/pre>\n<p>Anda akan melihat output berikut:<\/p>\n<pre>? httpd.service - The Apache HTTP Server&#13;\n   Loaded: <span style=\"color: #339966;\">loaded<\/span> (\/usr\/lib\/systemd\/system\/httpd.service; disabled; vendor preset: disabled)&#13;\n  Drop-In: \/usr\/lib\/systemd\/system\/httpd.service.d&#13;\n??php-fpm.conf&#13;\n   Active: active (running) since Wed 2020-02-19 08:51:34 UTC; 1min 25s ago&#13;\n     Docs: man:httpd.service(8)&#13;\n Main PID: 4716 (httpd)&#13;\n   Status: \"Total requests: 6; Idle\/Busy workers 100\/0;Requests\/sec: 0.0759; Bytes served\/sec: 812 B\/sec\"&#13;\n    Tasks: 278 (limit: 12558)&#13;\n   Memory: 43.1M&#13;\n   CGroup: \/system.slice\/httpd.service&#13;\n??4716 \/usr\/sbin\/httpd -DFOREGROUND&#13;\n??4718 \/usr\/sbin\/httpd -DFOREGROUND&#13;\n??4719 \/usr\/sbin\/httpd -DFOREGROUND&#13;\n??4720 \/usr\/sbin\/httpd -DFOREGROUND&#13;\n??4721 \/usr\/sbin\/httpd -DFOREGROUND&#13;\n??4935 \/usr\/sbin\/httpd -DFOREGROUND&#13;\n&#13;\nFeb 19 08:51:34 centos8 systemd[1]: Starting The Apache HTTP Server...&#13;\n<\/pre>\n<h2>Amankan WonderCMS dengan\u00a0SSL Let\u2019s Encrypt<\/h2>\n<p>Selanjutnya, install Certbot client untuk installasi Let\u2019s Encrypt dengan perintah berikut:<\/p>\n<pre>wget https:\/\/dl.eff.org\/certbot-auto&#13;\n mv certbot-auto \/usr\/local\/bin\/certbot-auto&#13;\n chown root \/usr\/local\/bin\/certbot-auto&#13;\n chmod 0755 \/usr\/local\/bin\/certbot-auto<\/pre>\n<p>Sekarang, jalankan perintah berikut untuk mendapatkan dan menginstal sertifikat SSL untuk situs web WonderCMS Anda.<\/p>\n<pre>certbot-auto --apache -d <span style=\"background-color: #ccffff;\">namadomain.com<\/span><\/pre>\n<p>Perintah di atas pertama-tama akan menginstal semua dependensi yang diperlukan di server Anda. Setelah diinstal, Anda akan diminta untuk memberikan alamat email dan menerima ketentuan layanan seperti yang ditunjukkan di bawah ini:<\/p>\n<p><strong>Note<\/strong>\u00a0: Jika Anda akan mendapatkan error terkait sertifikat SSL, restart layanan Apache dan jalankan kembali perintah di atas.<\/p>\n<pre>Saving debug log to \/var\/log\/letsencrypt\/letsencrypt.log&#13;\nPlugins selected: Authenticator apache, Installer apache&#13;\nEnter email address (used for urgent renewal and security notices) (Enter 'c' to&#13;\ncancel): <a href=\"https:\/\/www.linuxid.net\/cdn-cgi\/l\/email-protection\" class=\"__cf_email__\" data-cfemail=\"bfdedbd2d6d1ffd3d6d1cac7d6db91d1dacb\">[email\u00a0protected]<\/a>&#13;\n&#13;\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -&#13;\nPlease read the Terms of Service at&#13;\nhttps:\/\/letsencrypt.org\/documents\/LE-SA-v1.2-November-15-2017.pdf. You must&#13;\nagree in order to register with the ACME server at&#13;\nhttps:\/\/acme-v02.api.letsencrypt.org\/directory&#13;\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -&#13;\n(A)gree\/(C)ancel: A&#13;\n&#13;\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -&#13;\nWould you be willing to share your email address with the Electronic Frontier&#13;\nFoundation, a founding partner of the Let's Encrypt project and the non-profit&#13;\norganization that develops Certbot? We'd like to send you email about our work&#13;\nencrypting the web, EFF news, campaigns, and ways to support digital freedom.&#13;\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -&#13;\n(Y)es\/(N)o: Y &#13;\n&#13;\n&#13;\nObtaining a new certificate&#13;\nPerforming the following challenges:&#13;\nhttp-01 challenge for linuxid.net&#13;\nWaiting for verification...&#13;\nCleaning up challenges&#13;\nDeploying Certificate to VirtualHost \/etc\/nginx\/conf.d\/wondercms.conf&#13;\n<\/pre>\n<p>Selanjutnya, Anda harus memilih untuk mengarahkan lalu lintas<a href=\"https:\/\/www.linuxid.net\/post\/tutorial-redirect-http-ke-https-di-apache-web-server\/\"> HTTP ke HTTPS<\/a> seperti ditunjukkan di bawah ini:<\/p>\n<pre>Please choose whether or not to redirect HTTP traffic to HTTPS, removing HTTP access.&#13;\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -&#13;\n1: No redirect - Make no further changes to the webserver configuration.&#13;\n2: Redirect - Make all requests redirect to secure HTTPS access. Choose this for&#13;\nnew sites, or if you're confident your site works on HTTPS. You can undo this&#13;\nchange by editing your web server's configuration.&#13;\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -&#13;\nSelect the appropriate number [1-2] then [enter] (press 'c' to cancel): 2&#13;\n<\/pre>\n<p>Ketik <strong>2<\/strong> dan tekan <strong>Enter<\/strong> untuk melanjutkan. Setelah instalasi selesai, Anda akan melihat output berikut:<\/p>\n<pre>Redirecting all traffic on port 80 to ssl in \/etc\/nginx\/conf.d\/wondercms.conf&#13;\n&#13;\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -&#13;\nCongratulations! You have successfully enabled https:\/\/linuxid.net&#13;\n&#13;\nYou should test your configuration at:&#13;\nhttps:\/\/www.ssllabs.com\/ssltest\/analyze.html?d=linuxid.net&#13;\n- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -&#13;\n&#13;\nIMPORTANT NOTES:&#13;\n - Congratulations! Your certificate and chain have been saved at:&#13;\n   \/etc\/letsencrypt\/live\/linuxid.net\/fullchain.pem&#13;\n   Your key file has been saved at:&#13;\n   \/etc\/letsencrypt\/live\/linuxid.net\/privkey.pem&#13;\n   Your cert will expire on 2020-03-23. To obtain a new or tweaked&#13;\n   version of this certificate in the future, simply run certbot-auto&#13;\n   again with the \"certonly\" option. To non-interactively renew *all*&#13;\n   of your certificates, run \"certbot-auto renew\"&#13;\n - If you like Certbot, please consider supporting our work by:&#13;\n&#13;\n   Donating to ISRG \/ Let's Encrypt:   https:\/\/letsencrypt.org\/donate&#13;\n   Donating to EFF:         https:\/\/eff.org\/donate-le&#13;\n<\/pre>\n<h2>Konfigurasikan Firewall dan SELinux<\/h2>\n<p>Selanjutnya, Anda harus membuat <a href=\"https:\/\/www.linuxid.net\/post\/cara-konfigurasi-dan-manajemen-firewall-di-centos-8\/\">rule firewall<\/a> untuk mengizinkan layanan HTTP dan HTTPS dari jaringan eksternal. Anda dapat mengizinkannya dengan perintah berikut:<\/p>\n<pre>firewall-cmd --permanent --add-service=http&#13;\nfirewall-cmd --permanent --add-service=https&#13;\nfirewall-cmd --reload<\/pre>\n<p>Selanjutnya, Anda harus mengkonfigurasi SELinux untuk WonderCMS. Anda dapat mengkonfigurasi SELinux menggunakan perintah berikut:<\/p>\n<pre>setsebool httpd_can_network_connect on -P&#13;\n chcon -R -u system_u -t httpd_sys_rw_content_t -r object_r \/var\/www\/html\/wondercms<\/pre>\n<p>Terakhir, restart layanan Apache untuk menerapkan perubahan:<\/p>\n<pre>systemctl restart httpd<\/pre>\n<h2>Akses WonderCMS<\/h2>\n<p>Sekarang, buka browser web dan ketik URL <code>https:\/\/domainanda.com<\/code>. Anda akan diarahkan ke beranda WonderCMS:<\/p>\n<p><a href=\"https:\/\/www.linuxid.net\/assets\/media\/centos\/34654\/Page-1-WonderCMS-installed-successfully.png\"><img fetchpriority=\"high\" decoding=\"async\" class=\" td-modal-image alignnone wp-image-34834 size-large\" src=\"https:\/\/www.linuxid.net\/assets\/media\/centos\/34654\/Page-1-WonderCMS-installed-successfully-750x393.png\" alt=\"Page 1 - WonderCMS installed successfully\" width=\"696\" height=\"365\"\/><\/a><\/p>\n<p>Sekarang, copy kata sandi dari halaman di atas dan klik tombol <strong>Click to login<\/strong>. Anda akan melihat halaman berikut:<\/p>\n<p><a href=\"https:\/\/www.linuxid.net\/assets\/media\/centos\/34654\/Page-2-WonderCMS-Login.png\"><img loading=\"lazy\" decoding=\"async\" class=\" td-modal-image alignnone size-large wp-image-34835\" src=\"https:\/\/www.linuxid.net\/assets\/media\/centos\/34654\/Page-2-WonderCMS-Login-750x393.png\" alt=\"Page 2 - WonderCMS Login\" width=\"696\" height=\"365\"\/><\/a><\/p>\n<p>Paste kata sandi dan klik tombol <strong>Login<\/strong>. Anda akan melihat halaman berikut:<\/p>\n<p><a href=\"https:\/\/www.linuxid.net\/assets\/media\/centos\/34654\/Page-3-WonderCMS-Admin-Mode.png\"><img loading=\"lazy\" decoding=\"async\" class=\" td-modal-image alignnone size-large wp-image-34836\" src=\"https:\/\/www.linuxid.net\/assets\/media\/centos\/34654\/Page-3-WonderCMS-Admin-Mode-750x383.png\" alt=\"Page 3 - WonderCMS Admin Mode\" width=\"696\" height=\"355\"\/><\/a><\/p>\n<p>Selanjutnya, klik pada <strong>Settings\u00a0<\/strong>=&gt; <strong>Security<\/strong>. Anda akan melihat halaman berikut:<\/p>\n<p><a href=\"https:\/\/www.linuxid.net\/assets\/media\/centos\/34654\/Page-4-WonderCMS-Dashboard.png\"><img loading=\"lazy\" decoding=\"async\" class=\" td-modal-image alignnone size-large wp-image-34837\" src=\"https:\/\/www.linuxid.net\/assets\/media\/centos\/34654\/Page-4-WonderCMS-Dashboard-750x399.png\" alt=\"Page 4 - WonderCMS Dashboard\" width=\"696\" height=\"370\"\/><\/a><\/p>\n<p>Ubah URL login, kata sandi Anda dan klik tombol <strong>CHANGE<\/strong>\u00a0<strong>PASSWORD.<\/strong><\/p>\n<h2>Kesimpulan<\/h2>\n<p>Selamat! Anda telah berhasil menginstal dan mengamankan WonderCMS pada CentOS 8 dengan SSL Let\u2019s Encrypt. Sekarang Anda dapat meng-host blog dan situs web Anda dengan mudah menggunakan WonderCMS.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WonderCMS adalah sistem manajemen konten (CMS) free, open-source, sederhana dan ringan untuk membangun situs web&hellip;<\/p>\n","protected":false},"author":2,"featured_media":691,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[15,111,44,120],"class_list":["post-690","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","tag-centos","tag-centos-8","tag-cms","tag-wondercms"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Cara Install dan Konfigurasi WonderCMS di Apache CentOS 8 - Linuxid<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/\" \/>\n<meta property=\"og:locale\" content=\"id_ID\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cara Install dan Konfigurasi WonderCMS di Apache CentOS 8 - Linuxid\" \/>\n<meta property=\"og:description\" content=\"WonderCMS adalah sistem manajemen konten (CMS) free, open-source, sederhana dan ringan untuk membangun situs web&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/\" \/>\n<meta property=\"og:site_name\" content=\"Linuxid\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-25T18:12:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-18T08:21:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Install-WonderCMS-di-Apache-CentOS-8.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"530\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"xsand\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Ditulis oleh\" \/>\n\t<meta name=\"twitter:data1\" content=\"xsand\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimasi waktu membaca\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 menit\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/\",\"url\":\"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/\",\"name\":\"Cara Install dan Konfigurasi WonderCMS di Apache CentOS 8 - Linuxid\",\"isPartOf\":{\"@id\":\"https:\/\/linuxid.net\/post\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Install-WonderCMS-di-Apache-CentOS-8.jpg\",\"datePublished\":\"2020-03-25T18:12:43+00:00\",\"dateModified\":\"2025-04-18T08:21:00+00:00\",\"author\":{\"@id\":\"https:\/\/linuxid.net\/post\/#\/schema\/person\/e6642d26041eab9fef2677e204e89d79\"},\"breadcrumb\":{\"@id\":\"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/#breadcrumb\"},\"inLanguage\":\"id\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/#primaryimage\",\"url\":\"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Install-WonderCMS-di-Apache-CentOS-8.jpg\",\"contentUrl\":\"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Install-WonderCMS-di-Apache-CentOS-8.jpg\",\"width\":1000,\"height\":530},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Beranda\",\"item\":\"https:\/\/linuxid.net\/post\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cara Install dan Konfigurasi WonderCMS di Apache CentOS 8\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxid.net\/post\/#website\",\"url\":\"https:\/\/linuxid.net\/post\/\",\"name\":\"Linuxid\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxid.net\/post\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"id\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxid.net\/post\/#\/schema\/person\/e6642d26041eab9fef2677e204e89d79\",\"name\":\"xsand\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\/\/linuxid.net\/post\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cc8513768e15fa0758099a0ba5b898f3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cc8513768e15fa0758099a0ba5b898f3?s=96&d=mm&r=g\",\"caption\":\"xsand\"},\"url\":\"https:\/\/www.linuxid.net\/post\/author\/xsand\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Cara Install dan Konfigurasi WonderCMS di Apache CentOS 8 - Linuxid","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/","og_locale":"id_ID","og_type":"article","og_title":"Cara Install dan Konfigurasi WonderCMS di Apache CentOS 8 - Linuxid","og_description":"WonderCMS adalah sistem manajemen konten (CMS) free, open-source, sederhana dan ringan untuk membangun situs web&hellip;","og_url":"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/","og_site_name":"Linuxid","article_published_time":"2020-03-25T18:12:43+00:00","article_modified_time":"2025-04-18T08:21:00+00:00","og_image":[{"width":1000,"height":530,"url":"https:\/\/linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Install-WonderCMS-di-Apache-CentOS-8.jpg","type":"image\/jpeg"}],"author":"xsand","twitter_card":"summary_large_image","twitter_misc":{"Ditulis oleh":"xsand","Estimasi waktu membaca":"7 menit"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/","url":"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/","name":"Cara Install dan Konfigurasi WonderCMS di Apache CentOS 8 - Linuxid","isPartOf":{"@id":"https:\/\/linuxid.net\/post\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/#primaryimage"},"image":{"@id":"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Install-WonderCMS-di-Apache-CentOS-8.jpg","datePublished":"2020-03-25T18:12:43+00:00","dateModified":"2025-04-18T08:21:00+00:00","author":{"@id":"https:\/\/linuxid.net\/post\/#\/schema\/person\/e6642d26041eab9fef2677e204e89d79"},"breadcrumb":{"@id":"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/#breadcrumb"},"inLanguage":"id","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/"]}]},{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/#primaryimage","url":"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Install-WonderCMS-di-Apache-CentOS-8.jpg","contentUrl":"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Install-WonderCMS-di-Apache-CentOS-8.jpg","width":1000,"height":530},{"@type":"BreadcrumbList","@id":"https:\/\/linuxid.net\/post\/cara-install-dan-konfigurasi-wondercms-di-apache-centos-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Beranda","item":"https:\/\/linuxid.net\/post\/"},{"@type":"ListItem","position":2,"name":"Cara Install dan Konfigurasi WonderCMS di Apache CentOS 8"}]},{"@type":"WebSite","@id":"https:\/\/linuxid.net\/post\/#website","url":"https:\/\/linuxid.net\/post\/","name":"Linuxid","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxid.net\/post\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"id"},{"@type":"Person","@id":"https:\/\/linuxid.net\/post\/#\/schema\/person\/e6642d26041eab9fef2677e204e89d79","name":"xsand","image":{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/linuxid.net\/post\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cc8513768e15fa0758099a0ba5b898f3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cc8513768e15fa0758099a0ba5b898f3?s=96&d=mm&r=g","caption":"xsand"},"url":"https:\/\/www.linuxid.net\/post\/author\/xsand\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/posts\/690","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/comments?post=690"}],"version-history":[{"count":1,"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/posts\/690\/revisions"}],"predecessor-version":[{"id":2629,"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/posts\/690\/revisions\/2629"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/media\/691"}],"wp:attachment":[{"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/media?parent=690"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/categories?post=690"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/tags?post=690"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}