{"id":1330,"date":"2019-10-11T04:59:45","date_gmt":"2019-10-10T21:59:45","guid":{"rendered":"https:\/\/www.linuxid.net\/post\/?p=1330"},"modified":"2025-04-18T15:21:35","modified_gmt":"2025-04-18T08:21:35","slug":"cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10","status":"publish","type":"post","link":"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/","title":{"rendered":"Cara Install dan Konfigurasi Jetty JAVA http Server di Debian 10"},"content":{"rendered":"<p>Jetty adalah Java HTTP server free dan open-source yang dapat digunakan dalam berbagai proyek, baik dalam pengembangan maupun produksi.<\/p>\n<p>Jetty memiliki jejak kecil dalam memori, dapat disematkan, berfitur lengkap, dan mendukung SPDY, WebSocket, OSGi, JNDI, JAAS, dan banyak integrasi lainnya.\u00a0Jetty biasanya digunakan atau di integrasikan dengan satu atau beberapa produk aktif seperti Alfresco, Apache ActiveMQ, Apache Spark, Apache Maven, Red5 dan Hadoop.<\/p>\n<p>Dalam tutorial ini, kami akan menunjukkan kepada Anda bagaimana menginstal Jetty di Debian 10.<\/p>\n<h2>Persyaratan Tutorial<\/h2>\n<h2>Sebelum Mulai<\/h2>\n<p>Pertama, disarankan untuk memperbarui sistem Anda dengan versi terbaru. Anda dapat melakukannya dengan menjalankan perintah berikut:<\/p>\n<pre>sudo apt update &amp;&amp; sudo apt upgrade -y<\/pre>\n<p>Setelah sistem Anda diperbarui, restart sistem Anda untuk menerapkan perubahan konfigurasi.<\/p>\n<h2>Instal Java<\/h2>\n<p>Jetty adalah aplikasi berbasis Java. Jadi, Anda perlu <a href=\"https:\/\/www.linuxid.net\/post\/tutorial-install-dan-konfigurasi-java-di-debian-10-linux\/\">install Java<\/a> ke sistem Anda. Secara default, versi terbaru Java tersedia di repositori default Debian 10. Anda dapat menginstalnya dengan menjalankan perintah berikut:<\/p>\n<pre>apt-get install default-jdk -y<\/pre>\n<p>Setelah instalasi selesai, Anda dapat memeriksa versi Java dengan perintah berikut:<\/p>\n<pre>java --version<\/pre>\n<p>Anda akan mendapatkan output berikut:<\/p>\n<pre>openjdk 11.0.3 2019-04-16&#13;\nOpenJDK Runtime Environment (build 11.0.3+7-post-Debian-5)&#13;\nOpenJDK 64-Bit Server VM (build 11.0.3+7-post-Debian-5, mixed mode, sharing)&#13;\n<\/pre>\n<h2>Install Jetty<\/h2>\n<p>Secara default, Jetty tersedia di repositori default Debian 10. Anda dapat menginstalnya dengan menjalankan perintah berikut:<\/p>\n<pre>apt-get install jetty9 -y<\/pre>\n<p>Setelah diinstal, periksa versi Jetty dengan perintah :<\/p>\n<pre>apt show jetty9<\/pre>\n<p>Anda akan melihat output berikut:<\/p>\n<pre>Package: jetty9&#13;\nVersion: 9.4.15-1&#13;\nPriority: optional&#13;\nSection: java&#13;\nMaintainer: Debian Java Maintainers &lt;<a href=\"https:\/\/www.linuxid.net\/cdn-cgi\/l\/email-protection\" class=\"__cf_email__\" data-cfemail=\"65150e02480f0413044808040c0b11040c0b00171625090c1611164b04090c0a110d4b0100070c040b4b0a1702\">[email\u00a0protected]<\/a>&gt;&#13;\nInstalled-Size: 757 kB&#13;\n<\/pre>\n<p>Selanjutnya, start layanan Jetty dan aktifkan untuk memulai setelah sistem reboot dengan perintah berikut:<\/p>\n<pre>systemctl start jetty9&#13;\n systemctl enable jetty9:<\/pre>\n<p>Anda juga dapat memeriksa status Jetty menggunakan perintah :<\/p>\n<pre>systemctl status jetty9<\/pre>\n<p>Anda akan mendapatkan output kurang lebih seperti berikut :<\/p>\n<pre>? jetty9.service - Jetty 9 Web Application Server&#13;\n   Loaded: loaded (\/lib\/systemd\/system\/jetty9.service; enabled; vendor preset: enabled)&#13;\n   Active: active (running) since Sat 2019-09-28 02:47:55 UTC; 1min 11s ago&#13;\n     Docs: https:\/\/www.eclipse.org\/jetty\/documentation\/current\/&#13;\n Main PID: 1658 (java)&#13;\n    Tasks: 24 (limit: 1138)&#13;\n   Memory: 69.9M&#13;\n   CGroup: \/system.slice\/jetty9.service&#13;\n??1658 \/usr\/bin\/java -Djetty.home=\/usr\/share\/jetty9 -Djetty.base=\/usr\/share\/jetty9 -Djava.io.tmpdir=\/tmp -jar \/usr\/share\/jetty9\/star&#13;\n&#13;\nSep 28 02:48:12 debian jetty9[1658]: 2019-09-28 02:48:12.492:INFO:oejdp.ScanningAppProvider:main: Deployment monitor [file:\/\/\/var\/lib\/jetty9\/we&#13;\nSep 28 02:48:14 debian jetty9[1658]: 2019-09-28 02:48:14.079:INFO:oeja.AnnotationConfiguration:main: Scanning elapsed time=16ms&#13;\nSep 28 02:48:14 debian jetty9[1658]: 2019-09-28 02:48:14.602:INFO:oejshC.root:main: Warning: No org.apache.tomcat.JarScanner set in ServletCont&#13;\nSep 28 02:48:15 debian jetty9[1658]: 2019-09-28 02:48:15.796:INFO:oajs.TldScanner:main: At least one JAR was scanned for TLDs yet contained no &#13;\nSep 28 02:48:16 debian jetty9[1658]: 2019-09-28 02:48:16.312:INFO:oejs.session:main: DefaultSessionIdManager workerName=node0&#13;\nSep 28 02:48:16 debian jetty9[1658]: 2019-09-28 02:48:16.315:INFO:oejs.session:main: No SessionScavenger set, using defaults&#13;\nSep 28 02:48:16 debian jetty9[1658]: 2019-09-28 02:48:16.318:INFO:oejs.session:main: node0 Scavenging every 600000ms&#13;\nSep 28 02:48:16 debian jetty9[1658]: 2019-09-28 02:48:16.587:INFO:oejsh.ContextHandler:main: Started o.e.j.w.WebAppContext@2f4948e4{root,\/,file&#13;\nSep 28 02:48:16 debian jetty9[1658]: 2019-09-28 02:48:16.836:INFO:oejs.AbstractConnector:main: Started ServerConnector@18419dc8{HTTP\/1.1,[http\/&#13;\nSep 28 02:48:16 debian jetty9[1658]: 2019-09-28 02:48:16.843:INFO:oejs.Server:main: Started @21109ms&#13;\nlines 1-20\/20 (END)&#13;\n<\/pre>\n<h2>Konfigurasi Nginx sebagai\u00a0reverse proxy untuk Jetty<\/h2>\n<p>Secara default, Jetty berjalan pada port <code>8080<\/code>. Jadi Anda perlu mengkonfigurasi Nginx sebagai <em><a href=\"https:\/\/www.linuxid.net\/post\/cara-setting-nginx-sebagai-reverse-proxy\/\">reverse proxy<\/a><\/em> untuk meneruskan permintaan dari port <code>80<\/code> ke <code>8080<\/code>.<\/p>\n<p>Untuk melakukannya, instal\u00a0web server Nginx dengan perintah berikut:<\/p>\n<pre>apt-get install nginx -y<\/pre>\n<p>Selanjutnya, buat file konfigurasi <a href=\"https:\/\/www.linuxid.net\/post\/tutorial-konfigurasi-nginx-server-blocks-di-debian-10\/\">virtual host<\/a> baru untuk Jetty dengan perintah berikut:<\/p>\n<pre>nano \/etc\/nginx\/sites-available\/jetty.conf<\/pre>\n<p>Tambahkan baris berikut:<\/p>\n<pre>upstream jetty {&#13;\n  server 127.0.0.1:8080 weight=100 max_fails=5 fail_timeout=5;&#13;\n}&#13;\n&#13;\nserver {&#13;\n  listen          80;&#13;\n  server_name     example.com;&#13;\n&#13;\n  location \/ {&#13;\n        proxy_set_header X-Forwarded-Host $host;&#13;\n        proxy_set_header X-Forwarded-Server $host;&#13;\n        proxy_pass http:\/\/jetty\/;&#13;\n  }&#13;\n}&#13;\n<\/pre>\n<p>Simpan dan tutup file setelah Anda selesai. Kemudian, periksa Nginx untuk setiap kesalahan sintaks dengan perintah berikut:<\/p>\n<pre>nginx -t<\/pre>\n<p>Anda akan melihat output berikut:<\/p>\n<pre>nginx: the configuration file \/etc\/nginx\/nginx.conf syntax is ok&#13;\nnginx: configuration file \/etc\/nginx\/nginx.conf test is successful&#13;\n<\/pre>\n<p>Selanjutnya, aktifkan virtual\u00a0host Nginx dengan membuat <a href=\"https:\/\/www.linuxid.net\/post\/cara-mudah-menghapus-symbolic-links-symlink-di-linux\/\">symlink<\/a> ke <code>sites-enabled<\/code> dan <a href=\"https:\/\/www.linuxid.net\/post\/perintah-dasar-untuk-manajemen-nginx-services\/\">restart Nginx<\/a> service untuk menerapkan konfigurasi baru:<\/p>\n<pre>sudo ln -s \/etc\/nginx\/sites-available\/jetty.conf \/etc\/nginx\/sites-enabled\/&#13;\n systemctl restart nginx<\/pre>\n<h2>Akses Jetty Web Interface<\/h2>\n<p>Sekarang, buka web browser dan ketik URL http:\/\/example.com. Anda akan diarahkan ke dasbor default Jetty di layar berikut:<\/p>\n<p><a href=\"https:\/\/www.linuxid.net\/assets\/media\/debian\/33874\/Konfigurasi-Jetty-JAVA-http-Server-di-Debian-10.png\"><img fetchpriority=\"high\" decoding=\"async\" class=\" td-modal-image alignnone wp-image-35063 size-large\" src=\"https:\/\/www.linuxid.net\/assets\/media\/debian\/33874\/Konfigurasi-Jetty-JAVA-http-Server-di-Debian-10-750x356.png\" alt=\"Konfigurasi Jetty JAVA http Server di Debian 10\" width=\"696\" height=\"330\"\/><\/a><\/p>\n<p>Selamat! Anda telah berhasil menginstal dan mengkonfigurasi Jetty dengan Nginx pada Debian 10. Sekarang Anda dapat dengan mudah menggunakan aplikasi Java Anda dengan Jetty.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Jetty adalah Java HTTP server free dan open-source yang dapat digunakan dalam berbagai proyek, baik&hellip;<\/p>\n","protected":false},"author":2,"featured_media":1331,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[16,79,108,210,14],"class_list":["post-1330","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","tag-debian","tag-debian-10","tag-java","tag-jetty","tag-web-server"],"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 Jetty JAVA http Server di Debian 10 - 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:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/\" \/>\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 Jetty JAVA http Server di Debian 10 - Linuxid\" \/>\n<meta property=\"og:description\" content=\"Jetty adalah Java HTTP server free dan open-source yang dapat digunakan dalam berbagai proyek, baik&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/\" \/>\n<meta property=\"og:site_name\" content=\"Linuxid\" \/>\n<meta property=\"article:published_time\" content=\"2019-10-10T21:59:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-18T08:21:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Konfigurasi-Jetty-JAVA-http-Server-di-Debian-10.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1281\" \/>\n\t<meta property=\"og:image:height\" content=\"608\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"4 menit\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/\",\"url\":\"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/\",\"name\":\"Cara Install dan Konfigurasi Jetty JAVA http Server di Debian 10 - Linuxid\",\"isPartOf\":{\"@id\":\"https:\/\/linuxid.net\/post\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Konfigurasi-Jetty-JAVA-http-Server-di-Debian-10.png\",\"datePublished\":\"2019-10-10T21:59:45+00:00\",\"dateModified\":\"2025-04-18T08:21:35+00:00\",\"author\":{\"@id\":\"https:\/\/linuxid.net\/post\/#\/schema\/person\/e6642d26041eab9fef2677e204e89d79\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/#breadcrumb\"},\"inLanguage\":\"id\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/#primaryimage\",\"url\":\"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Konfigurasi-Jetty-JAVA-http-Server-di-Debian-10.png\",\"contentUrl\":\"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Konfigurasi-Jetty-JAVA-http-Server-di-Debian-10.png\",\"width\":1281,\"height\":608},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Beranda\",\"item\":\"https:\/\/linuxid.net\/post\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cara Install dan Konfigurasi Jetty JAVA http Server di Debian 10\"}]},{\"@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 Jetty JAVA http Server di Debian 10 - 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:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/","og_locale":"id_ID","og_type":"article","og_title":"Cara Install dan Konfigurasi Jetty JAVA http Server di Debian 10 - Linuxid","og_description":"Jetty adalah Java HTTP server free dan open-source yang dapat digunakan dalam berbagai proyek, baik&hellip;","og_url":"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/","og_site_name":"Linuxid","article_published_time":"2019-10-10T21:59:45+00:00","article_modified_time":"2025-04-18T08:21:35+00:00","og_image":[{"width":1281,"height":608,"url":"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Konfigurasi-Jetty-JAVA-http-Server-di-Debian-10.png","type":"image\/png"}],"author":"xsand","twitter_card":"summary_large_image","twitter_misc":{"Ditulis oleh":"xsand","Estimasi waktu membaca":"4 menit"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/","url":"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/","name":"Cara Install dan Konfigurasi Jetty JAVA http Server di Debian 10 - Linuxid","isPartOf":{"@id":"https:\/\/linuxid.net\/post\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Konfigurasi-Jetty-JAVA-http-Server-di-Debian-10.png","datePublished":"2019-10-10T21:59:45+00:00","dateModified":"2025-04-18T08:21:35+00:00","author":{"@id":"https:\/\/linuxid.net\/post\/#\/schema\/person\/e6642d26041eab9fef2677e204e89d79"},"breadcrumb":{"@id":"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/#breadcrumb"},"inLanguage":"id","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/"]}]},{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/#primaryimage","url":"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Konfigurasi-Jetty-JAVA-http-Server-di-Debian-10.png","contentUrl":"https:\/\/www.linuxid.net\/post\/wp-content\/uploads\/2025\/03\/Konfigurasi-Jetty-JAVA-http-Server-di-Debian-10.png","width":1281,"height":608},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxid.net\/post\/cara-install-dan-konfigurasi-jetty-java-http-server-di-debian-10\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Beranda","item":"https:\/\/linuxid.net\/post\/"},{"@type":"ListItem","position":2,"name":"Cara Install dan Konfigurasi Jetty JAVA http Server di Debian 10"}]},{"@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\/1330","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=1330"}],"version-history":[{"count":1,"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/posts\/1330\/revisions"}],"predecessor-version":[{"id":2811,"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/posts\/1330\/revisions\/2811"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/media\/1331"}],"wp:attachment":[{"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/media?parent=1330"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/categories?post=1330"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxid.net\/post\/wp-json\/wp\/v2\/tags?post=1330"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}