{"id":5576,"date":"2016-01-25T16:35:16","date_gmt":"2016-01-25T08:35:16","guid":{"rendered":"http:\/\/rmohan.com\/?p=5576"},"modified":"2016-01-25T16:35:16","modified_gmt":"2016-01-25T08:35:16","slug":"nginx-server-security-configuration","status":"publish","type":"post","link":"https:\/\/mohan.sg\/?p=5576","title":{"rendered":"Nginx server security configuration"},"content":{"rendered":"<p>Nginx server security configuration<\/p>\n<p>First, turn off SELinux<br \/>\nSecurity-Enhanced Linux (SELinux) is a Linux kernel feature that provides security policy protection mechanism supports access control.<br \/>\nHowever, SELinux brings additional security and the disproportionate use of complexity, cost is not high<\/p>\n<p>sed -i \/SELINUX=enforcing\/SELINUX=disabled\/ \/etc\/selinux\/config<\/p>\n<p>\/usr\/sbin\/sestatus -v # Check status<\/p>\n<p>Second, the least privilege allowed by zoning mount<\/p>\n<p>A separate partition on the server nginx directory.<\/p>\n<p>For example, create a new partition \/dev\/sda5 (first logical partition), and mounted at \/nginx.<br \/>\nMake sure \/nginx is noexec,nodev and nosetuid permission to mount<\/p>\n<p>The following is my \/etc\/fstab mount \/nginx information: LABEL=\/nginx \/nginx ext3 defaults,nosuid,noexec,nodev 1 2<\/p>\n<p>Note: You need to create a new partition using fdisk and mkfs.ext3 command.<br \/>\nThird, to strengthen the Linux security configuration \/etc\/sysctl.conf<\/p>\n<p>You can control and configure the Linux kernel by editing \/etc\/sysctl.conf, network settings<\/p>\n<p># Avoid a smurf attack<\/p>\n<p>net.ipv4.icmp_echo_ignore_broadcasts = 1<\/p>\n<p># Turn on protection for bad icmp error messages<\/p>\n<p>net.ipv4.icmp_ignore_bogus_error_responses = 1<\/p>\n<p># Turn on syncookies for SYN flood attack protection<\/p>\n<p>net.ipv4.tcp_syncookies = 1<\/p>\n<p># Turn on and log spoofed, source routed, and redirect packets<\/p>\n<p>net.ipv4.conf.all.log_martians = 1<\/p>\n<p>net.ipv4.conf.default.log_martians = 1<\/p>\n<p># No source routed packets here<\/p>\n<p>net.ipv4.conf.all.accept_source_route = 0<\/p>\n<p>net.ipv4.conf.default.accept_source_route = 0<\/p>\n<p># Turn on reverse path filtering<\/p>\n<p>net.ipv4.conf.all.rp_filter = 1<\/p>\n<p>net.ipv4.conf.default.rp_filter = 1<\/p>\n<p># Make sure no one can alter the routing tables<\/p>\n<p>net.ipv4.conf.all.accept_redirects = 0<\/p>\n<p>net.ipv4.conf.default.accept_redirects = 0<\/p>\n<p>net.ipv4.conf.all.secure_redirects = 0<\/p>\n<p>net.ipv4.conf.default.secure_redirects = 0<\/p>\n<p># Don\u2019t act as a router<\/p>\n<p>net.ipv4.ip_forward = 0<\/p>\n<p>net.ipv4.conf.all.send_redirects = 0<\/p>\n<p>net.ipv4.conf.default.send_redirects = 0<\/p>\n<p># Turn on execshild<\/p>\n<p>kernel.exec-shield = 1<\/p>\n<p>kernel.randomize_va_space = 1<\/p>\n<p># Tuen IPv6<\/p>\n<p>net.ipv6.conf.default.router_solicitations = 0<\/p>\n<p>net.ipv6.conf.default.accept_ra_rtr_pref = 0<\/p>\n<p>net.ipv6.conf.default.accept_ra_pinfo = 0<\/p>\n<p>net.ipv6.conf.default.accept_ra_defrtr = 0<\/p>\n<p>net.ipv6.conf.default.autoconf = 0<\/p>\n<p>net.ipv6.conf.default.dad_transmits = 0<\/p>\n<p>net.ipv6.conf.default.max_addresses = 1<\/p>\n<p># Optimization for port usefor LBs<\/p>\n<p># Increase system file descriptor limit<\/p>\n<p>fs.file-max = 65535<\/p>\n<p># Allow for more PIDs (to reduce rollover problems); may break some programs 32768<\/p>\n<p>kernel.pid_max = 65536<\/p>\n<p># Increase system IP port limits<\/p>\n<p>net.ipv4.ip_local_port_range = 2000 65000<\/p>\n<p># Increase TCP max buffer size setable using setsockopt()<\/p>\n<p>net.ipv4.tcp_rmem = 4096 87380 8388608<\/p>\n<p>net.ipv4.tcp_wmem = 4096 87380 8388608<\/p>\n<p># Increase Linux auto tuning TCP buffer limits<\/p>\n<p># min, default, and max number of bytes to use<\/p>\n<p># set max to at least 4MB, or higher if you use very high BDP paths<\/p>\n<p># Tcp Windows etc<\/p>\n<p>net.core.rmem_max = 8388608<\/p>\n<p>net.core.wmem_max = 8388608<\/p>\n<p>net.core.netdev_max_backlog = 5000<\/p>\n<p>net.ipv4.tcp_window_scaling = 1<\/p>\n<p>Fourth, remove all unnecessary Nginx module<\/p>\n<p>You need to make the number of modules directly by compiling the source code Nginx minimized. By limiting access to only allow web server module to minimize risk.<br \/>\nYou can configure only install nginx modules you need. For example, disabling SSL and autoindex module you can execute the following command:<\/p>\n<p>.\/configure -without-http_autoindex_module -without-http_ssi_module<br \/>\nmake &amp;&amp; make install<\/p>\n<p>Change nginx version name, edit the file \/h\/http\/ngx_http_header_filter_module.c?<\/p>\n<p>vim\u00a0 src\/http\/ngx_http_header_filter_module.c<\/p>\n<p>static char ngx_http_server_string[] = \u201cServer: nginx\u201d CRLF;<\/p>\n<p>static char ngx_http_server_full_string[] = \u201cServer: \u201d NGINX_VER CRLF;<\/p>\n<p>\/\/change to<\/p>\n<p>static char ngx_http_server_string[] = \u201cServer: Mohan Web Server\u201d CRLF;<\/p>\n<p>static char ngx_http_server_full_string[] = \u201cServer: Mohan Web Server\u201d CRLF;<\/p>\n<p>Close nginx version number display<\/p>\n<p>server_tokens off<\/p>\n<p>Fifth, based Iptables firewall restrictions<\/p>\n<p>The following firewall script block any addition to allowing:<\/p>\n<p>HTTP (TCP port 80) of a request from<br \/>\nICMP ping requests from<br \/>\nntp (port 123) requests output<br \/>\nsmtp (TCP port 25) request output<\/p>\n<p>Six control buffer overflow attacks<\/p>\n<p>Edit and set all clients buffer size limit is as follows:<\/p>\n<p>client_body_buffer_size\u00a0 1K;<\/p>\n<p>client_header_buffer_size 1k;<\/p>\n<p>client_max_body_size 1k;<\/p>\n<p>large_client_header_buffers 2 1k;<\/p>\n<p>client_body_buffer_size 1k (default 8k or 16k) This instruction can specify the buffer size of the connection request entity.<br \/>\nIf the value exceeds the specified buffer connection request, then the whole or part of the requesting entity will try to write a temporary file.<br \/>\nclient_header_buffer_size 1k\u00a0 directive specifies the client request buffer size of the head.<br \/>\nIn most cases a request header is not greater than 1k, but if there is a large cookie wap from the client that it may be greater than 1k,<br \/>\nNginx will assign it a larger buffer, this value can be set inside the large_client_header_buffers .<br \/>\nclient_max_body_size 1k- directive specifies the maximum allowable size of the client requesting entity connected, it appears in the Content-Length header field of the request.<\/p>\n<p>If the request is greater than the specified value, the client will receive a &#8220;Request Entity Too Large&#8221; (413) error. Remember, the browser does not know how to display the error.<br \/>\nlarge_client_header_buffers- specify the client number and size of some of the larger buffer request header use.<br \/>\nRequest a field can not be greater than the buffer size, if the client sends a relatively large head, nginx returns &#8220;Request URI too large&#8221; (414)<br \/>\nSimilarly, the head of the longest field of the request can not be greater than one buffer, otherwise the server will return &#8220;Bad request&#8221; (400). Separate buffer only when demand.<br \/>\nThe default buffer size for the operating system paging file size is usually 4k or 8k, if a connection request is ultimately state to keep- alive, it occupied the buffer will be freed.<\/p>\n<p>You also need to improve server performance control timeouts and disconnects the client. Edit as follows:<\/p>\n<p>client_body_timeout 10;<br \/>\nclient_header_timeout 10;<br \/>\nkeepalive_timeout 5 5;<br \/>\nsend_timeout 10;<\/p>\n<p>\u2022 client_body_timeout 10; &#8211; directive specifies the timeout request entity read. Here timeout refers to a requesting entity did not enter the reading step, if the connection after this time the client does not have any response, Nginx will return a &#8220;Request time out&#8221; (408) error.<br \/>\n\u2022 client_header_timeout 10; &#8211; directive specifies the client request header headline read timeout. Here timeout refers to a request header did not enter the reading step, if the connection after this time the client does not have any response, Nginx will return a &#8220;Request time out&#8221; (408) error.<br \/>\n\u2022 keepalive_timeout 5 5; &#8211; the first parameter specifies the timeout length of the client and server connections, over this time, the server will close the connection. The second parameter (optional) specifies the response header Keep-Alive: timeout = time value time, this value can make some browsers know when to close the connection to the server not repeat off if you do not specify this parameter , nginx does not send Keep-Alive header information in the response. (This does not refer to how a connection &#8220;Keep-Alive&#8221;) These two values ??of the parameters can be different.<br \/>\n\u2022 send_timeout 10; directive specifies the timeout is sent to the client after the response, Timeout refers not enter a complete state established, completed only two handshakes, more than this time if the client does not have any response, nginx will close the connection.<\/p>\n<p>Seven control concurrent connections<\/p>\n<p>You can use NginxHttpLimitZone module to restrict a specific session or a special case of concurrent connections IP addresses under. Edit nginx.conf:<\/p>\n<p>### Directive describes the zone, in which the session states are stored i.e. store in slimits. ###<\/p>\n<p>### 1m can handle 32000 sessions with 32 bytes\/session, set to 5m x 32000 session ###<\/p>\n<p>limit_zone slimits $binary_remote_addr 5m;<\/p>\n<p>### Control maximum number of simultaneous connections for one session i.e. ###<\/p>\n<p>### restricts the amount of connections from a single ip address ###<\/p>\n<p>limit_conn slimits 5<\/p>\n<p>The above represents the remote IP address to limit each client connection can not be open at the same time more than five.<\/p>\n<p>Eight, only allow access to our domain<\/p>\n<p>If the robot is just random scan all domain name servers, that reject the request. You must allow the configuration of the virtual domain or reverse proxy request. You do not use IP addresses to reject.<\/p>\n<p>if ($host !~ ^(test.in|www.test.in|images.test.in)$ ) {<br \/>\nreturn 444;<br \/>\n}<\/p>\n<p>Nine, to limit the request method available<\/p>\n<p>GET and POST are the Internet&#8217;s most commonly used method. The method of the Web server is defined in RFC 2616. If the Web server is not required to run all available methods, they should be disabled. The following command will filter only allows GET, HEAD and POST methods:<\/p>\n<p>## Only allow these request methods ##<\/p>\n<p>if ($request_method !~ ^(GET|HEAD|POST)$ ) {<\/p>\n<p>return 444;<\/p>\n<p>}<\/p>\n<p>## Do not accept DELETE, SEARCH and other methods ##<\/p>\n<p>More about HTTP method introduced<\/p>\n<p>\u2022 GET method is used to request,<\/p>\n<p>\u2022 HEAD method is the same, unless GET request to the server can not return the message body.<\/p>\n<p>\u2022 POST method can involve many things, such as storage or update data, or ordering products, or send e-mail by submitting the form. This is usually the use of server-side processing, such as PHP, Perl and Python scripts. If the file you want to upload and server processing the data, you must use this method.<\/p>\n<p>Ten, how to refuse a number of User-Agents?<\/p>\n<p>You can easily stop User-Agents, such as scanners, robotics and abuse your server spammers.<\/p>\n<p>## Block download agents ##<\/p>\n<p>if ($http_user_agent ~* LWP::Simple|BBBike|wget) {<\/p>\n<p>return 403;<\/p>\n<p>}<\/p>\n<p>Soso and the proper way to prevent robots:<\/p>\n<p>## Block some robots ##<\/p>\n<p>if ($http_user_agent ~* Sosospider|YodaoBot) {<\/p>\n<p>return 403;<\/p>\n<p>}<\/p>\n<p>XI prevent image hotlinking<\/p>\n<p>Pictures or HTML Daolian mean someone directly with your website address to display pictures on his website. The end result, you need to pay the extra cost of broadband. This is often in the forum and blog. I strongly recommend that you block and prevent hotlinking behavior.<\/p>\n<p># Stop deep linking or hot linking<\/p>\n<p>location \/images\/ {<\/p>\n<p>valid_referers none blocked www.example.com example.com;<\/p>\n<p>if ($invalid_referer) {<\/p>\n<p>return\u00a0 403;<\/p>\n<p>}<\/p>\n<p>}<\/p>\n<p>For example: the redirect and display the specified image<\/p>\n<p>valid_referers blocked www.example.com example.com;<\/p>\n<p>valid_referers blocked www.example.com example.com;<\/p>\n<p>if ($invalid_referer) {<\/p>\n<p>rewrite ^\/images\/uploads.*\\.(gif|jpg|jpeg|png)$ http:\/\/www.examples.com\/banned.jpg last<\/p>\n<p>}<\/p>\n<p>Twelve, directory restrictions<\/p>\n<p>You can set access permissions on the specified directory. All websites directory should one configuration, allowing only access to the directory.<br \/>\nAccess by IP address restrictions<br \/>\nYou can restrict access by IP address directory \/ admin \/:<\/p>\n<p>ocation \/docs\/ {<\/p>\n<p>## block one workstation<\/p>\n<p>deny\u00a0\u00a0\u00a0 192.168.1.1;<\/p>\n<p>## allow anyone in 192.168.1.0\/24<\/p>\n<p>allow\u00a0 192.168.1.0\/24;<\/p>\n<p>## drop rest of the world<\/p>\n<p>deny\u00a0\u00a0\u00a0 all;<\/p>\n<p>}<\/p>\n<p>Via password protected directory, first create the password file and increase the &#8220;user&#8221; user<\/p>\n<p>mkdir \/usr\/local\/nginx\/conf\/.htpasswd\/<\/p>\n<p>htpasswd -c \/usr\/local\/nginx\/conf\/.htpasswd\/passwd user<\/p>\n<p>Edit nginx.conf, added need protected directories<\/p>\n<p>### Password Protect \/personal-images\/ and \/delta\/ directories ###<\/p>\n<p>location ~ \/(personal-images\/.*|delta\/.*) {<\/p>\n<p>auth_basic\u00a0 \u201cRestricted\u201d;<\/p>\n<p>auth_basic_user_file\u00a0 \/usr\/local\/nginx\/conf\/.htpasswd\/passwd;<\/p>\n<p>}<\/p>\n<p>Once the password file has been generated, you can also use the following command to allow access to the user increases<\/p>\n<p>htpasswd -s \/usr\/local\/nginx\/conf\/.htpasswd\/passwd userName<\/p>\n<p>Thirteen, Nginx SSL Configuration<\/p>\n<p>HTTP is a plain text protocol, which is open to passive surveillance. You should use SSL to encrypt your user content.<br \/>\nCreate SSL certificate, execute the following command:<\/p>\n<p>cd \/usr\/local\/nginx\/conf<\/p>\n<p>openssl genrsa -des3 -out server.key 1024<\/p>\n<p>openssl req -new -key server.key -out server.csr<\/p>\n<p>cp server.key server.key.org<\/p>\n<p>openssl rsa -in server.key.org -out server.key<\/p>\n<p>openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt<\/p>\n<p>Edit nginx.conf press following updates:<\/p>\n<p>server {<\/p>\n<p>server_name example.com;<\/p>\n<p>listen 443;<\/p>\n<p>ssl on;<\/p>\n<p>ssl_certificate \/usr\/local\/nginx\/conf\/server.crt;<\/p>\n<p>ssl_certificate_key \/usr\/local\/nginx\/conf\/server.key;<\/p>\n<p>access_log \/usr\/local\/nginx\/logs\/ssl.access.log;<\/p>\n<p>error_log \/usr\/local\/nginx\/logs\/ssl.error.log;<\/p>\n<p>}<\/p>\n<p>Fourteen, Nginx and PHP Security Recommendations<\/p>\n<p>PHP is a popular scripting language on the server side. Edit \/etc\/php.ini file as follows:<\/p>\n<p># Disallow dangerous functions<\/p>\n<p>disable_functions = phpinfo, system, mail, exec<\/p>\n<p>## Try to limit resources\u00a0 ##<\/p>\n<p># Maximum execution time of each script, in seconds<\/p>\n<p>max_execution_time = 30<\/p>\n<p># Maximum amount of time each script may spend parsing request data<\/p>\n<p>max_input_time = 60<\/p>\n<p># Maximum amount of memory a script may consume (8MB)<\/p>\n<p>memory_limit = 8M<\/p>\n<p># Maximum size of POST data that PHP will accept.<\/p>\n<p>post_max_size = 8M<\/p>\n<p># Whether to allow HTTP file uploads.<\/p>\n<p>file_uploads = Off<\/p>\n<p># Maximum allowed size for uploaded files.<\/p>\n<p>upload_max_filesize = 2M<\/p>\n<p># Do not expose PHP error messages to external users<\/p>\n<p>display_errors = Off<\/p>\n<p># Turn on safe mode<\/p>\n<p>safe_mode = On<\/p>\n<p># Only allow access to executables in isolated directory<\/p>\n<p>safe_mode_exec_dir = php-required-executables-path<\/p>\n<p># Limit external access to PHP environment<\/p>\n<p>safe_mode_allowed_env_vars = PHP_<\/p>\n<p># Restrict PHP information leakage<\/p>\n<p>expose_php = Off<\/p>\n<p># Log all errors<\/p>\n<p>log_errors = On<\/p>\n<p># Do not register globals for input data<\/p>\n<p>register_globals = Off<\/p>\n<p># Minimize allowable PHP post size<\/p>\n<p>post_max_size = 1K<\/p>\n<p># Ensure PHP redirects appropriately<\/p>\n<p>cgi.force_redirect = 0<\/p>\n<p># Disallow uploading unless necessary<\/p>\n<p># Enable SQL safe mode<\/p>\n<p>sql.safe_mode = On<\/p>\n<p># Avoid Opening remote files<\/p>\n<p>allow_url_fopen = Off<\/p>\n<p>Fifth, if possible, let Nginx run in a chroot jail<\/p>\n<p>The nginx placed in a chroot jail to reduce the potential for illegal entry into other directories. You can use the traditional and nginx installed with chroot. If possible, that use FreeBSD jails, Xen, OpenVZ virtualization container concept.<\/p>\n<p>XVI firewall level limits the number of connections for each IP<\/p>\n<p>Network server must monitor connections and connection limits per second. PF and Iptales are able to enter your nginx server before the end user to block access.<br \/>\nLinux Iptables: limit the number of connections for each Nginx<br \/>\nfollowing example will prevent from a single IP connection of more than 15 the number of ports 80, 60 seconds.<\/p>\n<p>\/sbin\/iptables -A INPUT -p tcp \u2013dport 80 -i eth0 -m state \u2013state NEW -m recent \u2013set<\/p>\n<p>\/sbin\/iptables -A INPUT -p tcp \u2013dport 80 -i eth0 -m state \u2013state NEW -m recent \u2013update \u2013seconds 60\u00a0 \u2013hitcount 15 -j DROP<\/p>\n<p>service iptables save<\/p>\n<p>According to your specific situation to set the connection limit.<\/p>\n<p>XVII configure the operating system to protect Web servers<\/p>\n<p>Like the above described start SELinux Correct set permissions \/nginx document root directory.<br \/>\nNginx running in user nginx. But the root directory (\/ nginx or \/usr\/local\/nginx\/html\/) should not be set, or the user belongs to the user nginx nginx writable.<br \/>\nFind the error file permissions can use the following command:<\/p>\n<p>find \/nginx -user nginx<\/p>\n<p>find \/usr\/local\/nginx\/html -user nginx<\/p>\n<p>Make sure you are more ownership of the root or other users, a typical permission settings \/usr\/local\/nginx\/html\/<\/p>\n<p>ls -l \/usr\/local\/nginx\/html\/<\/p>\n<p>Sample output:<\/p>\n<p>-rw-r-r- 1 root root 925 Jan 3 00:50 error4xx.html<\/p>\n<p>-rw-r-r- 1 root root 52 Jan 3 10:00 error5xx.html<\/p>\n<p>-rw-r-r- 1 root root 134 Jan 3 00:52 index.html<\/p>\n<p>You must delete the backup files from the vi or another text editor to create:<\/p>\n<p>find \/nginx -name \u2018.?*\u2019 -not -name .ht* -or -name \u2018*~\u2019 -or -name \u2018*.bak*\u2019 -or -name \u2018*.old*\u2019<\/p>\n<p>find \/usr\/local\/nginx\/html\/ -name \u2018.?*\u2019 -not -name .ht* -or -name \u2018*~\u2019 -or -name \u2018*.bak*\u2019 -or -name \u2018*.old*\u2019<\/p>\n<p>To delete these files by -delete option to find command.<\/p>\n<p>Eighth, the outgoing connections limit Nginx<\/p>\n<p>Hackers can use tools such as wget download your local file server. Iptables from using nginx user to block outgoing connections. ipt_owner module tries to match the creator of locally generated packets. The following example allows only users 80 user connections outside.<\/p>\n<p>\/sbin\/iptables -A OUTPUT -o eth0 -m owner \u2013uid-owner vivek -p tcp \u2013dport 80 -m state \u2013state NEW,ESTABLISHED\u00a0 -j ACCEPT<\/p>\n<p>With the above configuration, your nginx server is already very safe and you can publish web pages. However, you should also find more information on security settings according to your site procedures. For example, wordpress or a third-party program.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Nginx server security configuration<\/p>\n<p>First, turn off SELinux Security-Enhanced Linux (SELinux) is a Linux kernel feature that provides security policy protection mechanism supports access control. However, SELinux brings additional security and the disproportionate use of complexity, cost is not high<\/p>\n<p>sed -i \/SELINUX=enforcing\/SELINUX=disabled\/ \/etc\/selinux\/config<\/p>\n<p>\/usr\/sbin\/sestatus -v # Check status<\/p>\n<p>Second, the least privilege allowed by [&#8230;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[70],"tags":[],"_links":{"self":[{"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/posts\/5576"}],"collection":[{"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mohan.sg\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5576"}],"version-history":[{"count":1,"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/posts\/5576\/revisions"}],"predecessor-version":[{"id":5577,"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/posts\/5576\/revisions\/5577"}],"wp:attachment":[{"href":"https:\/\/mohan.sg\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5576"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mohan.sg\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=5576"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mohan.sg\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=5576"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}