{"id":70329,"date":"2024-07-24T01:09:04","date_gmt":"2024-07-24T01:09:04","guid":{"rendered":"https:\/\/blogmed.antonini.psc.br\/?p=70329"},"modified":"2024-07-24T01:30:46","modified_gmt":"2024-07-24T01:30:46","slug":"instalar-e-confirgurar-servidor-rpi","status":"publish","type":"post","link":"https:\/\/antonini.ddns.net\/?p=70329","title":{"rendered":"Instalar e confirgurar servidor RPI"},"content":{"rendered":"<pre>\r\nConfigurar servidor\r\n\r\nraspi-config\r\n\r\n---------------------------------------\r\n\r\nHostname\r\n\r\nnano \/etc\/hostname\r\n\r\nrpi\r\n\r\n---------------------------------------\r\nHosts\r\n\r\nnano \/etc\/hosts\r\n\r\n127.0.0.1\tlocalhost.localdomain\tlocalhost\r\n192.168.1.5\trpi.antonini.psc.br\trpi\r\n\r\n::1\t\tlocalhost ip6-localhost ip6-loopback\r\nff02::1\t\tip6-allnodes\r\nff02::2\t\tip6-allrouters\r\n\r\n127.0.1.1\trpi\r\n\r\n---------------------------------------\r\n\r\nResolv.conf\r\n\r\ncriar o arquivo\r\n\r\nnano \/etc\/resolv.conf.tail\r\n\r\nDigitar nele\r\n\r\nnameserver 192.168.1.5\/24\r\ndomain antonini.psc.br\r\n\r\n---------------------------------------\r\n\r\nIP fixo\r\n\r\nRenomear o arquivo interfaces original\r\n\r\ncd \/etc\/network\/\r\n\r\nmv interfaces interfaces-dhcp\r\n\r\nCriar um novo arquivo interfaces\r\n\r\nnano \/etc\/network\/interfaces\r\n\r\ncolocar dentro:\r\n#N\u00e3o esquecer de identar as linhas dos IPs\r\n\r\n# The loopback network interface\r\nauto lo\r\niface lo inet loopback\r\n\r\n# The primary network interface\r\n\r\nallow-hotplug enp0s3\r\nauto enp0s3\r\niface enp0s3 inet static\r\naddress 192.168.1.5\r\nnetmask 255.255.255.0\r\nnetwork 192.168.1.0\r\nbroadcast 192.168.1.255\r\ngateway 192.168.1.1\r\n# dns-* options are implemented by the resolvconf package, if installed\r\n# dns-nameservers 177.207.211.213\r\n# dns-search antonini.psc.br\r\n\r\nap\u00f3s \u201ccomandar\u201d\r\n\r\nsystemctl daemon-reload\r\n\r\nAcrescentar no final do arquivo dhcpcd.conf\r\n\r\nnano \/etc\/dhcpcd.conf\r\n\r\ninterface eth0\r\nstatic ip_address=192.168.1.5\/24\r\nstatic routers=192.168.1.1\r\nstatic domain_name_servers=192.168.1.1\r\n\r\ninterface wlan0\r\nstatic ip_address=192.168.43.83\/24\r\nstatic routers=192.168.43.1\r\nstatic domain_name_servers=192.168.43.1\r\n\r\ndepois reboot\r\n\r\nDica aqui: <a href=\"https:\/\/www.modmypi.com\/blog\/how-to-give-your-raspberry-pi-a-static-ip-address-update\" target=\"_blank\" rel=\"noopener\">aqui<\/a>\r\n\r\n---------------------------------------\r\n\r\nInstalar Bind9\r\n\r\nsudo apt-get install bind9 dnsutils\r\n\r\nnano \/etc\/bind\/named.conf.local\r\n\r\nIncluir no final:\r\n\r\nzone \"antonini.psc.br\" IN {\r\n    \ttype master;\r\n    \tfile \"\/etc\/bind\/db.psc\";\r\n};\r\n\r\nzone \"cienciasdasaude.med.br\" IN {\r\n    \ttype master;\r\n    \tfile \"\/etc\/bind\/db.ciencias\";\r\n};\r\n\r\nzone \"antonini.med.br\" IN {\r\n    \ttype master;\r\n    \tfile \"\/etc\/bind\/db.med\";\r\n};\r\n\r\nzone \"27.187.179.in-addr.arpa\" {\r\n    \ttype master;\r\n    \tfile \"\/etc\/bind\/db.192\";\r\n};\r\n\r\nCriar o arquivo db.psc:\r\n\r\nnano \/etc\/bind\/db.psc\r\n\r\nColar dentro dele:\r\n\r\n$TTL 604800\r\n@           \tIN  \tSOA \trpi.antonini.psc.br. root.antonini.antonini.psc.br. (\r\n            \t01012005    \t; Serial\r\n            \t604800      \t; Refresh\r\n            \t86400       \t; Retry\r\n            \t2419200     \t; Expire\r\n            \t604800 )    \t; Negative Cache TTL\r\n;\r\n@           \tIN  \tNS  \trpi.antonini.psc.br.\r\n@           \tIN  \tMX  \t5   \tmail\r\n@           \tIN  \tA   \t179.184.27.64\r\nrpi\t  \tIN  \tA   \t179.184.27.64\r\nmail        \tIN  \tA   \t179.184.27.64\r\nwww        \tIN  \tA   \t179.184.27.64\r\nftp        \tIN  \tA   \t179.184.27.64\r\nblogmed       \tIN  \tA   \t179.184.27.64\r\nmidia        \tIN  \tA   \t179.184.27.64\r\n\r\nCriar o arquivo db.ciencias\r\n\r\nnano \/etc\/bind\/db.ciencias\r\n\r\n\r\n$TTL 604800\r\n@            IN      SOA     ns1.cienciasdasaude.med.br. root.antonini.antonini.psc.br. (\r\n                01012005        ; Serial\r\n                604800          ; Refresh\r\n                86400           ; Retry\r\n                2419200         ; Expire\r\n                604800 )        ; Negative Cache TTL\r\n;\r\n@           \tIN  \tNS  \tns1.cienciasdasaude.med.br.\r\n@           \tIN  \tMX  \t5   \tmail\r\n@           \tIN  \tA   \t177.207.211.213\r\nns1\t  \tIN  \tA   \t177.207.211.213\r\nmail        \tIN  \tA   \t177.207.211.213\r\nwww        \tIN  \tA   \t177.207.211.213\r\nftp        \tIN  \tA   \t177.207.211.213\r\n\r\n\r\nCriar o arquivo db.med:\r\n\r\nnano \/etc\/bind\/db.med\r\n\r\nColar dentro dele:\r\n\r\n$TTL 604800\r\n@           \tIN  \tSOA \tns1.antonini.med.br. root.antonini.antonini.med.br. (\r\n            \t01012005    \t; Serial\r\n            \t604800      \t; Refresh\r\n            \t86400       \t; Retry\r\n            \t2419200     \t; Expire\r\n            \t604800 )    \t; Negative Cache TTL\r\n;\r\n@           \tIN  \tNS  \tns1.antonini.med.br.\r\n@           \tIN  \tMX  \t5   \tmail\r\n@           \tIN  \tA   \t177.207.211.213\r\nns1\t  \tIN  \tA   \t177.207.211.213\r\nmail        \tIN  \tA   \t177.207.211.213\r\nwww        \tIN  \tA   \t177.207.211.213\r\nftp        \tIN  \tA   \t177.207.211.213\r\nblogmed       \tIN  \tA   \t177.207.211.213\r\n\r\n------------------------------------------------------------------\r\n\r\nCriar o arquivo db.rev\r\n\r\nnano \/etc\/bind\/db.rev\r\n\r\n@       IN      SOA     rpi.antonini.psc.br. antonini.antonini.psc.br. (\r\n                        2015121608\t; serial, todays date + todays serial #\r\n                        7200\t\t; refresh, seconds\r\n                        540\t\t; retry, seconds\r\n                        604800\t; expire, seconds\r\n                        86400 )\t; minimum, seconds\r\n;\r\n64\t3600\tPTR\tantonini.psc.br.\r\nantonini.psc.br. 3600      TXT        \"v=spf1 mx a ~all\"\r\n---------------------------------------\r\n\r\n\r\nInstalar LAMP\r\n\r\nsudo apt-get install apache2 apache2-utils\r\n\r\napt-get install libapache2-mod-php php php-pear php-mysql php-curl php-gd php-xml php-mbstring\r\n\r\ncd \/var\/www\/html\r\n\r\nsudo echo \"<?php phpinfo(); ?>\" | sudo tee info.php\r\n\r\nsudo apt-get install mysql-server mysql-client\r\n\r\nsudo apt-get install mariadb-server mariadb-client\r\n\r\nmysql_secure_installation\r\n\r\nmysql -u root -p\r\n\r\nCREATE USER 'heinz'@'localhost' IDENTIFIED BY 'Mala$4453';\r\n\r\nGRANT ALL PRIVILEGES ON * . * TO 'heinz'@'localhost';\r\n\r\nFLUSH PRIVILEGES;\r\n\r\n\r\nsudo apt-get install phpmyadmin\r\n\r\n> Reconfigurar webserver: apache\r\n\r\n> Configurar base de dados dbconfig-common para o phpmyadmin sim (ou yes)\r\n\r\n> Digitar a senha do usu\u00e1rio administrativo do MySQL : senha do MySQL\r\n\r\n> Digitar uma senha  para o PHPMySQL : usar a mesma senha do MySQL\r\n\r\napt-get install php7.2-mbstring\r\n\r\nabrir o arquivo \r\n\r\nnano \/etc\/apache2\/apache2.conf \r\n\r\nincluir no final do arquivo a linha\r\n\r\nInclude \/etc\/phpmyadmin\/apache.conf\r\n\r\nCaso o phpmyadmin d\u00ea erro (n\u00e3o encontrado ou acesso negado) digitar no terminal:\r\n\r\nsudo ln -s \/usr\/share\/phpmyadmin \/var\/www\/\r\n\r\nCaso d\u00ea este erro:\r\n\r\nphpMyAdmin - Error\r\nThe mbstring extension is missing. Please check your PHP configuration.\r\n\r\nInsatalar:\r\nsudo apt-get install php7.0-mbstring\r\n\r\n\r\n\r\n---------------------------------------\r\napt-get install -y proftpd\r\n\r\nnano \/etc\/proftpd\/proftpd.conf\r\n\r\nUseIPv6 off\r\n\r\nou\r\n\r\nInstalar vsftpd\r\n\r\napt-get install -y vsftpd\r\n\r\ndepois:\r\n\r\nnano \/etc\/vsftpd.conf\r\n\r\nFa\u00e7a as seguintes altera\u00e7\u00f5es:\r\n*anonymous_enable=YES para anonymous_enable=NO\r\n*Remova local_enable=YES e write_enable=YES apagando o s\u00edmbolo # \u00e0 frente de cada linha.\r\n*A seguir, v\u00e1 para o fim do arquivo e acrescente: \r\nforce_dot_files=YES\r\n\r\nCriar link simb\u00f3lico para o usu\u00e1rio pi acessar a pasta var\/www\r\nln -s \/var\/www\/ ~\/www\r\n\r\n---------------------------------------\r\n\r\nCriar website no apache\r\n\/var\/www\/html\/\r\n\r\nmkdir psc\r\n\r\nchmod 777 -R \/var\/www\/html\/psc\r\n\r\ncd \/etc\/apache2\/sites-available\/\r\n\r\nnano antonini.psc.br.conf\r\n\r\n<virtualhost *:80>\r\n\tServerAdmin antonini@antonini.psc.br\r\n\tServerName antonini.psc.br\r\n\tServerAlias www.antonini.psc.br\r\n\tDocumentRoot \/var\/www\/html\/psc\/\r\n\tErrorLog ${APACHE_LOG_DIR}\/error.log\r\n\tCustomLog ${APACHE_LOG_DIR}\/access.log combined\r\n<\/virtualhost>\r\n\r\n\r\ndepois:\r\na2ensite antonini.psc.br.conf\r\n\/etc\/init.d\/apache2 reload\r\n\/etc\/init.d\/apache2 restart\r\n\r\n---------------------------------------\r\n\r\nmkdir \/var\/www\/html\/blogmed\r\n\r\nchmod 777 -R \/var\/www\/html\/blogmed\r\n\r\ncd \/etc\/apache2\/sites-available\/\r\n\r\nnano blogmed.antonini.psc.br.conf\r\n\r\n<virtualhost *:80>\r\n\tServerAdmin antonini@antonini.psc.br\r\n\tServerName blogmed.antonini.psc.br\r\n\tDocumentRoot \/var\/www\/html\/midia\/\r\n\tErrorLog ${APACHE_LOG_DIR}\/error.log\r\n\tCustomLog ${APACHE_LOG_DIR}\/access.log combined\r\n<\/virtualhost>\r\n\r\n\r\n\r\ndepois:\r\na2ensite blogmed.antonini.psc.br.conf\r\n\/etc\/init.d\/apache2 reload\r\n\/etc\/init.d\/apache2 restart\r\n\r\n---------------------------------------\r\n\r\nmkdir \/var\/www\/html\/midia\r\n\r\nchmod 777 -R \/var\/www\/html\/midia\r\n\r\ncd \/etc\/apache2\/sites-available\/\r\n\r\nnano midia.antonini.psc.br.conf\r\n\r\n<virtualhost *:80>\r\n\tServerAdmin antonini@antonini.psc.br\r\n\tServerName midia.antonini.psc.br\r\n\tDocumentRoot \/var\/www\/html\/midia\/\r\n\tErrorLog ${APACHE_LOG_DIR}\/error.log\r\n\tCustomLog ${APACHE_LOG_DIR}\/access.log combined\r\n<\/virtualhost>\r\n\r\n\r\ndepois:\r\na2ensite midia.antonini.psc.br.conf\r\n\/etc\/init.d\/apache2 reload\r\n\/etc\/init.d\/apache2 restart\r\n\r\n---------------------------------------\r\n\r\nmkdir \/var\/www\/html\/ciencias\r\n\r\nchmod 777 -R \/var\/www\/html\/ciencias\r\n\r\nnano cienciasdasaude.med.br.conf\r\n\r\n<virtualhost *:80>\r\n\tServerAdmin antonini@antonini.psc.br\r\n\tServerName cienciasdasaude.med.br\r\n\tServerAlias www.cienciasdasaude.med.br\r\n\tDocumentRoot \/var\/www\/html\/ciencias\/\r\n\tErrorLog ${APACHE_LOG_DIR}\/error.log\r\n\tCustomLog ${APACHE_LOG_DIR}\/access.log combined\r\n<\/virtualhost>\r\n\r\n\r\ndepois:\r\na2ensite cienciasdasaude.med.br.conf\r\n\/etc\/init.d\/apache2 reload\r\n\/etc\/init.d\/apache2 restart\r\n\r\n\r\n---------------------------------------\r\nMudar a porta no apache\r\n\r\nnano \/etc\/apache2\/ports.conf\r\n\r\n---------------------------------------\r\nMudar porta SSH\r\n\r\nnano \/etc\/ssh\/sshd_config\r\n\r\nDescomentar a linha #Port 22 e mudar a porta.\r\n---------------------------------------\r\n\r\nDescobrir o UUID de um disco, pendrive ou dispositivo\r\n\r\nls -alh \/dev\/disk\/by-uuid\/\r\n\r\nDisco r\u00edgido Samsung 1TB\r\nda73d3f8-1058-484d-b00c-18859bc707f7\r\n\r\nPendrive Kingstone USB 3.0 128GB\r\na8cb019e-aac4-4bf0-83cc-67cc27e20f76\r\n\r\nUUID=<dispositivo>    \/var    ext4\tdefaults,noatime  0   \t3\r\n\r\n---------------------------------------\r\nPara montar o disco:\r\nmkdir \/mnt\/hd_externo\r\nmount \/dev\/sda1 \/mnt\/hd_externo\/\r\n\r\nfstab no Raspberry Pi\r\n\r\nproc        \t\/proc       \tproc\tdefaults      \t0   \t0\r\n\/dev\/mmcblk0p6  \/boot       \tvfat\tdefaults      \t0   \t2\r\n\/dev\/mmcblk0p7  \/           \text4\tdefaults,noatime  0   \t1\r\nUUID=\t\t\/var\text4\tdefaults,noatime 0\t3\r\n# a swapfile is not a swap partition, no line here\r\n#   use  dphys-swapfile swap[on|off]  for that\r\n\r\nUUID=59f4337e-c8ce-4c24-98d8-3a90bcf608b2\t\t\/home\text4\tdefaults,noatime 0\t2\r\n\r\nPara desmontar:\r\numount \u201cDIRETORIO\u201d\r\n\r\n---------------------------------------\r\n\r\nInstala\u00e7\u00e3o do Citadel\r\n\r\nsudo apt-get update\r\n\r\napt-get install citadel-suite\r\n\r\nDeixar IP: 0.0.0.0\r\n\r\nM\u00e9todo de autentica\u00e7\u00e3o: Internal\r\n\r\nNome de administrador: admin ou mudar.\r\n\r\nSenha do administrador \/ repetir senha\r\n\r\nIntegra\u00e7\u00e3o com apache: apache2\r\n\r\nPorta http: 81\r\n\r\nPorta https: 443\r\n\r\nEscolher linguagem\r\n\r\nSe der mensagem de n\u00e3o criar diret\u00f3rio netconfigs, \"comandar\":\r\n\r\nsudo mkdir \/etc\/citadel\/netconfigs\r\nsudo chown citadel:citadel \/etc\/citadel\/netconfigs\r\nsudo service citadel restart\r\n\r\nPara reconfigurar:\r\n\/usr\/lib\/citadel-server\/setup\r\n\r\nAo reconfigurar, a primeira pergunta \u00e9 o nome do usu\u00e1rio administrador:\r\nvladimir\r\n\r\nA segunda pergunta \u00e9 a senha:\r\nsenha\r\n\r\nNas demais \u00e9 s\u00f3 \u201cteclar\u201d enter.\r\n\r\nInstalar e configurar o spamassassim, amavisd-new e clamaV\r\n\r\nsudo apt-get install spamassassin amavisd-new clamav\r\n\r\nnano \/etc\/mailname\r\n\r\ne colocar nele\r\n\r\nantonini.psc.br\r\n\r\neditar o arquivo:\r\n\r\nnano \/etc\/default\/spamassassin\r\n\r\nmudar ENABLE=0 para ENABLE=1 CRON=1\r\n\r\n\/etc\/init.d\/spamassassin start\r\n\r\nConfigurar SSL\r\n\r\ncd \/etc\/ssl\/citadel\r\nmkdir backup\r\nmv citadel* backup\r\n\r\nopenssl req -new -nodes -newkey rsa:4096 -days 365 -keyout citadel.key -out citadel.csr\r\n\r\nPreencher o certificado:\r\nBR\r\nParana\r\nCuritiba\r\nAntonini\r\nWebsite\r\ncaduceu.antonini.psc.br\r\nantonini@antonini.psc.br\r\n\r\nchmod 600 citadel.key\r\n\r\nopenssl x509 -req -days 1000 -in citadel.csr -signkey citadel.key -out citadel.cer\r\n\r\n\r\ncp -a citadel* \/etc\/ssl\/webcit\/\r\n\r\n\/etc\/init.d\/citadel restart\r\n\r\n\/etc\/init.d\/webcit start\r\n\r\napt-get install clamav\r\n\r\nfreshclam\r\n\r\nservice clamav-freshclam start\r\n\r\nsystemctl enable clamav-freshclam\r\n\r\nou\r\n\r\n\/etc\/init.d\/clamav-freshclam start\r\n\r\n\/etc\/init.d\/clamav-freshclam enable\r\n\r\nCaso retorne esta mensagem de erro: ERROR: \/var\/log\/clamav\/freshclam.log is locked by another process\r\n\r\nsudo service clamav-freshclam stop\r\n\r\nsudo service clamav-freshclam start\r\n\r\ne digite novamente freschclam\r\n\r\nAp\u00f3s conclu\u00edda a instala\u00e7\u00e3o, abrir o painel do citadel-suite clicar em administra\u00e7\u00e3o, em adicionar o dom\u00ednio, adicionar o host 127.0.0.1 no spamassassim e no clamav\r\n\r\n\r\nRemover Citadel Server no Raspberry Pi\r\n\r\nsudo apt-get remove --purge citadel-suite*\r\n\r\nApagar os diret\u00f3rios abaixo:\r\n \r\nsudo rm -rf \/usr\/local\/citadel\r\n\r\nsudo rm -rf \/usr\/local\/webcit\r\n\r\nsudo rm -rf \/usr\/local\/ctdlsupport\r\n\r\nsudo rm -rf \/etc\/citadel\r\n\r\nsudo rm -rf \/var\/lib\/citadel\r\n\r\nsudo rm -rf \/var\/spool\/citadel\r\n\r\nsudo rm -rf \/usr\/bin\/citadel\r\n\r\nsudo rm -rf \/etc\/ssl\/citadel\r\n\r\nsudo rm -rf \/etc\/init.d\/citadel\r\n\r\nsudo rm -rf \/run\/citadel\r\n \r\n \r\nRemover os scripts no Debian Packages\r\n\r\ndpkg --list |grep -i citadel\r\n\r\ndpkg -r citadel-client citadel-mta citadel-server citadel-suite citadel-webcit libcitadel3\r\n\r\ndpkg --purge citadel-client citadel-mta citadel-server citadel-suite citadel-webcit libcitadel3\r\n\r\nsudo apt-get autoremove\r\n\r\nApagar a linha no \/etc\/passwd\r\n\r\nnano \/etc\/passwd\r\n\r\ncitadel:x:116:122:Citadel system user,,,:\/var\/lib\/citadel:\/bin\/false\r\n<\/dispositivo>\r\n<\/pre>\n<p style=\"text-align: center;\">[<a href=\"javascript:history.go(-1)\">Voltar<\/a>]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Configurar servidor raspi-config &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Hostname nano \/etc\/hostname rpi &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Hosts nano \/etc\/hosts 127.0.0.1 localhost.localdomain localhost 192.168.1.5 rpi.antonini.psc.br rpi ::1 localhost ip6-localhost ip6-loopback ff02::1 ip6-allnodes ff02::2 ip6-allrouters 127.0.1.1 rpi &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Resolv.conf criar o arquivo nano \/etc\/resolv.conf.tail Digitar nele nameserver 192.168.1.5\/24 domain antonini.psc.br &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; IP fixo Renomear o arquivo interfaces original cd \/etc\/network\/ mv interfaces interfaces-dhcp Criar [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[24],"tags":[],"class_list":["post-70329","post","type-post","status-publish","format-standard","hentry","category-informatica"],"_links":{"self":[{"href":"https:\/\/antonini.ddns.net\/index.php?rest_route=\/wp\/v2\/posts\/70329","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/antonini.ddns.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/antonini.ddns.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/antonini.ddns.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/antonini.ddns.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=70329"}],"version-history":[{"count":15,"href":"https:\/\/antonini.ddns.net\/index.php?rest_route=\/wp\/v2\/posts\/70329\/revisions"}],"predecessor-version":[{"id":70341,"href":"https:\/\/antonini.ddns.net\/index.php?rest_route=\/wp\/v2\/posts\/70329\/revisions\/70341"}],"wp:attachment":[{"href":"https:\/\/antonini.ddns.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=70329"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/antonini.ddns.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=70329"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/antonini.ddns.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=70329"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}