搭建Ubuntu20.04和Debian10

虚拟主机(vhosts)服务多域而无需附加互联网
协议地址由 vhosts显示不同的页面
特殊网站请求文章描述如何在Ubuntu#20.04和debian#10上创建 vost

注释 :文章中,您可替换占位符example.com内建 vost

预设条件

  • Linux++服务器运行分发Ubuntu版本20.04或debian版本10
  • 阿帕契安装使用下列命令安装它:sudoapt安装ache2
  • dNS指向网站IP
  • ssh管理员权限用户
  • 防火墙配置允许80港交通

搭建 vost

使用下列步骤搭建ache

  1. 创建新目录存储网站内容本目录被称为root文档文件夹内
    阿帕契 vhost配置文件

    sdomkdir-p/var/www/vhosts/example.com/public_html
  2. 设置新目录权限替换ostuserusername:vhostuser带用户参数
    服务器访问目录

    sudochown-R用户名:vhostuser/var/www/vhosts/example.com/public_html
  3. 设置阅读权限所有用户目录

    sudochmod-R755/var/www/vhosts/
  4. 创建 vost网站配置文件

    vi /etc/apache2/sites-available/example.com.conf
  5. 将下文本粘贴到您创建的文件中 。替换example.com使用自己的网站主机名

    服务器名示例.com服务器Alias[email protected]DocumentRoot /var/www/vhosts/example.com/public_html
                  
                   选项-Indexs+CostSymLinks允许全部覆盖
                  ErrorLog ${APACHE_LOG_DIR}/example.com-error.log CustomLog ${APACHE_LOG_DIR}/example.com-access.log combined

    注释 :完成修改后保存文件按Esc键切换命令模式并打字:xq退出并保存修改

  6. 从虚拟主机文件创建符号链接站点启动目录使用a2ensite命令启动新虚拟主机文件

    sudo2ensite域名.com
  7. 查题你应该得到语法确定响应

    sudoacchectl配置
  8. 重开Apache

    sdo系统ctl重开ache2
  9. 想要查看测试页,可创建名文件索引.html根文件夹中

    vi索引.html
  10. 粘贴下文本

    
                  vhost测试例如.com - 华体会足球软件
    

    成功com vost例子

  11. 保存并退出文件

    :xq
  12. 导航至http://example.com/index.html查看测试页


\r\n \r\n \r\n

Success! example.com vhost!

\r\n
Baidu
map
\r\n \r\n\r\n11. Save and exit the file.\r\n\r\n :xq\r\n\r\n12. Navigate to **http://example.com/index.html** to view the test page.","opts":{"alwaysThrow":false,"compatibilityMode":false,"copyButtons":true,"correctnewlines":false,"markdownOptions":{"fences":true,"commonmark":true,"gfm":true,"ruleSpaces":false,"listItemIndent":"1","spacedTable":true,"paddedTable":true},"normalize":true,"lazyImages":true,"reusableContent":{"tags":{}},"safeMode":false,"settings":{"position":false},"theme":"light"},"terms":[{"_id":"636d314a7b2cc300312af862","term":"parliament","definition":"Owls are generally solitary, but when seen together the group is called a 'parliament'!"}],"variables":{"user":{},"defaults":[{"source":"security","_id":"641e10ffd239e90035bb5928","name":"api_key","type":"apiKey","apiSetting":"641e10fed239e90035bb5923"},{"source":"security","_id":"641e10ffd239e90035bb5927","name":"petstore_auth","type":"oauth2","apiSetting":"641e10fed239e90035bb5923"},null,{"source":"security","_id":"645a798c3273ad32563c4726","name":"noauthAuth","type":"http","scheme":"noauth","apiSetting":"645a798b3273ad32563c4724"}]},"dehydrated":{"toc":"","body":"

You can use virtual hosts (vhosts) to serve multiple domains without the need for additional Internet
\nProtocol (IP) addresses. With vhosts, the different pages display according to settings in the host file for the
\nparticular site requested. This article describes how to create a vhost on Ubuntu® 20.04 and Debian® 10.

\n

Note: In this article, you can replace the placeholder of example.com with the domain for which you’re setting up the vhost.

\n

Prerequisites

\n\n

Set up a vhost

\n

Use the following steps to set up an Apache® vhost:

\n
    \n
  1. \n

    Create a new directory to store the website’s content. This directory is known as the root document folder in
    \nyour Apache vhost configuration file.

    \n
     sudo mkdir -p /var/www/vhosts/example.com/public_html\n
    \n
  2. \n
  3. \n

    Set the permissions for the new directory. Replace vhostuser in the username:vhostuser parameter with a user
    \non the server who has access to the directory.

    \n
     sudo chown -R username:vhostuser /var/www/vhosts/example.com/public_html\n
    \n
  4. \n
  5. \n

    Set read permissions to all users for the directory.

    \n
    sudo chmod -R 755 /var/www/vhosts/\n
    \n
  6. \n
  7. \n

    Create the configuration file for the vhost site.

    \n
    vi /etc/apache2/sites-available/example.com.conf\n
    \n
  8. \n
  9. \n

    Paste the following text into the file you created. Replace example.com with your own site hostname.

    \n
    ServerName example.com\nServerAlias www.example.com\nServerAdmin admin@example.com\nDocumentRoot /var/www/vhosts/example.com/public_html\n\n\n    Options -Indexes +FollowSymLinks\n    AllowOverride All\n\n\nErrorLog ${APACHE_LOG_DIR}/example.com-error.log\nCustomLog ${APACHE_LOG_DIR}/example.com-access.log combined\n
    \n

    Note: After you finish making the changes, save the file pressing the Esc key to switch to command mode and typing :xq to exit and save the changes.

    \n
  10. \n
  11. \n

    Create a symbolic link from the virtual host file to the sites-enabled directory to enable the new virtual host file using the a2ensite command.

    \n
    sudo a2ensite domain.com\n
    \n
  12. \n
  13. \n

    Check for issues. You should get a Syntax OK response.

    \n
    sudo apachectl configtest\n
    \n
  14. \n
  15. \n

    Restart Apache.

    \n
    sudo systemctl restart apache2\n
    \n
  16. \n
  17. \n

    If you want to see a test page, you can create a file named index.html in your root folder.

    \n
    vi index.html\n
    \n
  18. \n
  19. \n

    Paste the following text.

    \n
    \n  \n    \n    vhost test for example.com
    \n  \n  \n    

    Success! example.com vhost!

    \n
    Baidu
    \n\n
    \n
  20. \n
  21. \n

    Save and exit the file.

    \n
    :xq\n
    \n
  22. \n
  23. \n

    Navigate to http://example.com/index.html to view the test page.

    \n
  24. \n
"}},"doc":{"metadata":{"image":[],"title":"","description":"","keywords":"","robots":"index"},"api":{"method":"get","url":"","auth":"required","params":[]},"next":{"description":"","pages":[]},"algolia":{"recordCount":3,"publishPending":false,"updatedAt":"2023-09-07T08:02:08.003Z"},"title":"Set up an Apache vhost on Ubuntu 20.04 and Debian 10","icon":"","updates":[],"type":"basic","slug":"set-up-an-apache-vhost-on-ubuntu-20-04-and-debian-10","excerpt":"","body":"You can use virtual hosts (vhosts) to serve multiple domains without the need for additional Internet\r\nProtocol (IP) addresses. With vhosts, the different pages display according to settings in the host file for the\r\nparticular site requested. This article describes how to create a vhost on Ubuntu® 20.04 and Debian® 10.\r\n\r\n**Note:** In this article, you can replace the placeholder of **example.com** with the domain for which you’re setting up the vhost.\r\n\r\n### Prerequisites\r\n\r\n- A Linux® server running distribution Ubuntu version 20.04 or Debian version 10\r\n- Apache installed. Install it by using the following command: `sudo apt install apache2`\r\n- DNS pointing the site to the server’s IP\r\n- A user with SSH administrator privileges\r\n- Firewall configured to allow traffic on port 80\r\n\r\n### Set up a vhost\r\n\r\nUse the following steps to set up an Apache® vhost:\r\n\r\n1. Create a new directory to store the website’s content. This directory is known as the *root document* folder in\r\n your Apache vhost configuration file.\r\n\r\n sudo mkdir -p /var/www/vhosts/example.com/public_html\r\n\r\n2. Set the permissions for the new directory. Replace `vhostuser` in the **username:vhostuser** parameter with a user\r\n on the server who has access to the directory.\r\n\r\n sudo chown -R username:vhostuser /var/www/vhosts/example.com/public_html\r\n\r\n3. Set read permissions to all users for the directory.\r\n\r\n sudo chmod -R 755 /var/www/vhosts/\r\n\r\n4. Create the configuration file for the vhost site.\r\n\r\n vi /etc/apache2/sites-available/example.com.conf\r\n\r\n5. Paste the following text into the file you created. Replace **example.com** with your own site hostname.\r\n\r\n ServerName example.com\r\n ServerAlias www.example.com\r\n ServerAdmin admin@example.com\r\n DocumentRoot /var/www/vhosts/example.com/public_html\r\n\r\n \r\n Options -Indexes +FollowSymLinks\r\n AllowOverride All\r\n \r\n\r\n ErrorLog ${APACHE_LOG_DIR}/example.com-error.log\r\n CustomLog ${APACHE_LOG_DIR}/example.com-access.log combined\r\n\r\n **Note:** After you finish making the changes, save the file pressing the **Esc** key to switch to command mode and typing `:xq` to exit and save the changes.\r\n\r\n6. Create a symbolic link from the virtual host file to the sites-enabled directory to enable the new virtual host file using the a2ensite command.\r\n\r\n sudo a2ensite domain.com\r\n\r\n7. Check for issues. You should get a **Syntax OK** response.\r\n\r\n sudo apachectl configtest\r\n\r\n8. Restart Apache.\r\n\r\n sudo systemctl restart apache2\r\n\r\n9. If you want to see a test page, you can create a file named **index.html** in your root folder.\r\n\r\n vi index.html\r\n\r\n10. Paste the following text.\r\n\r\n \r\n \r\n \r\n vhost test for example.com \r\n \r\n \r\n

Success! example.com vhost!

\r\n
Baidu
map
\r\n \r\n\r\n11. Save and exit the file.\r\n\r\n :xq\r\n\r\n12. Navigate to **http://example.com/index.html** to view the test page.","order":395,"isReference":false,"deprecated":false,"hidden":false,"sync_unique":"","link_url":"","link_external":false,"reusableContent":[],"previousSlug":"","slugUpdatedAt":"2023-05-17T20:33:22.426Z","revision":7,"_id":"646646f19d7a0c0076c47785","lastUpdatedHash":"b9a5f992de045957986e6560a4d630cba7201246","project":"636d314a7b2cc300312af861","user":"5af39863989da435b05d284e","category":{"title":"Public Cloud","slug":"public-cloud","order":9999,"reference":false,"_id":"64107a7fee1584001f61f947","project":"636d314a7b2cc300312af861","version":"636d314a7b2cc300312af866","createdAt":"2023-03-14T13:45:35.452Z","__v":0,"type":"guide","id":"64107a7fee1584001f61f947"},"createdAt":"2023-05-18T15:40:33.600Z","updatedAt":"2023-12-11T16:12:58.665Z","version":{"version":"1.0","version_clean":"1.0.0","codename":"","is_stable":true,"is_beta":true,"is_hidden":false,"is_deprecated":false,"categories":["636d314a7b2cc300312af868","636d314a7b2cc300312af868","6372011ade7b7600a2343971","63726bb1975454004c244cf0","6376be12127d9900031599e1","63774b1d9eef4a00e5b62f18","63ff1e02b3738700445b26b4","63ff83dd43c817007346d470","64107a6ff9a9400061fb465a","64107a750b81930011506490","64107a79fc13c0005ed4836d","64107a7c9cf8520011a62bd9","64107a7fee1584001f61f947","641082b90f3ef4000b43ef26","641e010c3515610d761cf71d","641e0fe685ebf8003c2ac2e9","641e1030fe15970059b83d7a","641e10fed239e90035bb5924","643976eb94d370000deca9c5","643eb4d1f195600074707bde","643edb1078e8af00581d6025","6446e6cd4c6c320012421eba","64471a0483c65f003cc90679","6447fa1204508d167ad74187","644acc292835070056a1ffc2","64512c3398180c0032bcebc2","64516fe83f49d100296cd1bd","645171e4f1fb03006c7ee494","6451751e0ac9da001158d36a","64518259f068f50477d88696","64528ac2439fe20018a1136d","64529bbd1df7160064bb4130","6452a2c25889bb0c1e2603c2","6452a5b8154b870116b0541c","6452a5d3173e670068a40e04","6452a5f3254968001a6a8591","6452a6785abf210bdfe90146","6452b20b90709a0e007dcd10","6452b55b5a587200583ffd21","6452d52eeccf7c03cc275a95","645374b2c2a2640527e72fa2","6453b5166cb45618d546ca72","645477a8f90ece004ad0f609","6454aee1a6984a002f419059","6454af754df037000a477f38","64550c22aed895000b35e4e5","64551057a6984a002f47639f","645531b975d48b11b616e04c","645539b8f98098150309e05b","645544ce03e4210923c460e0","645546ff818fde20d9540305","645547eb6c0fef1e25749bfd","645549398c26ca0825a54daa","6455499c590d5d004bed6ea4","64554a2643d50200424c949f","64554a49f549ec00603ffca9","64554a62e79d4d158bb7c7e6","6455542d375c23005fe8b0e6","64555468d1f36d1496d6cdc8","64555815aa3ef3004371a359","6455593a98a9f21f277c445e","645560f1397690015ef4605f","6455702c1fbcf7000aa29af8","6458746a53771c01d5540ea1","64587a7f5cc705003d964d2c","645882b110a29802bb76f633","6458a6b24e80bc00745061e5","6458c4a6b80425005fe1eab2","6458c7173e18d001d7e62202","6458d57d5aa615002563ce8b","6458d6aae642620012783f2b","64598b4afed949000a631205","6459f83ed3e7e41076e6f7ac","645a3186b28e5e1e83d7eb1a","645a69297458df011aa5e228","645a6e07e142ac003c199287","645a6ea1872f3e322bf9a1d3","645a798b3273ad32563c4725","645af6e9f35aa90ad1fd945f","645b585b6e8a3009c63793dd","645b9f6da30de608fe6a9a18","645ba1b6d34aea1c2d16b0e9","645cf4ad9fa1110a67ad1e44","6466c9be6219af0a2dce7bf6","6466df1311b66b09ca7824eb","646b7817157f4b0074ef0969","6476362675a20e0044c3806f","64763e486eb59e0074e36589","6476402c373b6d00239d7529","647641c860cf5f004b98257b","647670afde4a1500494a9afa","6476d61c7fb8dd000a4ba53e","6476df870c36a3004e86c355","64810347dea925001e9966a5","648173085c2c33002f3852ba","648174fe92e2fc0baa3e8257","648b1684be1002180b500145","6491634b44859c00253786f9","649d7050b8a47e003cc16e70","64e3258b6436f0002c5898d5","64e71501135f560041d1fe15","651592d5e816a81977972e97","6554f620ea420b004e5e098b","657b1ac6ee3b67003015b961","658a89e0d696ad001c089aa2"],"_id":"636d314a7b2cc300312af866","project":"636d314a7b2cc300312af861","releaseDate":"2022-11-10T17:13:46.826Z","createdAt":"2022-11-10T17:13:46.826Z","__v":1,"updatedAt":"2023-12-26T08:08:00.624Z"},"__v":1,"parentDoc":"646721ee069cce07a369a274","isApi":false,"tutorials":[],"id":"646646f19d7a0c0076c47785"},"hideTOC":false,"meta":{"slug":"set-up-an-apache-vhost-on-ubuntu-20-04-and-debian-10","type":"docs","parent":"646721ee069cce07a369a274","image":[],"title":"Set up an Apache vhost on Ubuntu 20.04 and Debian 10","title_seo":"Set up an Apache vhost on Ubuntu 20.04 and Debian 10","description":"You can use virtual hosts (vhosts) to serve multiple domains without the need for additional InternetProtocol (IP) addresses. With vhosts, the different pages display according to settings in the host file for theparticular site requested. This article describes how to create a vhost on Ubuntu® 20.0...","keywords":"","robots":"index","_id":"646646f19d7a0c0076c47785","hidden":false},"slugUrl":"/docs/set-up-an-apache-vhost-on-ubuntu-20-04-and-debian-10","config":{"algoliaIndex":"readme_search_v2","amplitude":"dc8065a65ef83d6ad23e37aaf014fc84","asset_url":"https://cdn.readme.io","domain":"readme.io","domainFull":"https://dash.readme.com","encryptedLocalStorageKey":"ekfls","fullstory":{"enabled":true},"metrics":{"dashUrl":"https://m.readme.io","defaultUrl":"https://metrics.readme.io","exportMaxRetries":12,"wsUrl":"wss://m.readme.io"},"readmeRecaptchaSiteKey":"6LesVBYpAAAAAESOCHOyo2kF9SZXPVb54Nwf3i2x","releaseVersion":"4.565.0","sentry":{"dsn":"https://3bbe57a973254129bcb93e47dc0cc46f@o343074.ingest.sentry.io/2052166","enabled":true,"tracesSampleRate":0},"sslGenerationService":"ssl.readmessl.com"},"context":{"labs":{},"user":{},"terms":[{"_id":"636d314a7b2cc300312af862","term":"parliament","definition":"Owls are generally solitary, but when seen together the group is called a 'parliament'!"}],"variables":{"user":{},"defaults":[{"source":"security","_id":"641e10ffd239e90035bb5928","name":"api_key","type":"apiKey","apiSetting":"641e10fed239e90035bb5923"},{"source":"security","_id":"641e10ffd239e90035bb5927","name":"petstore_auth","type":"oauth2","apiSetting":"641e10fed239e90035bb5923"},null,{"source":"security","_id":"645a798c3273ad32563c4726","name":"noauthAuth","type":"http","scheme":"noauth","apiSetting":"645a798b3273ad32563c4724"}]},"project":{"_id":"636d314a7b2cc300312af861","appearance":{"rdmd":{"callouts":{"useIconFont":false},"theme":{"background":"","border":"","markdownEdge":"","markdownFont":"","markdownFontSize":"","markdownLineHeight":"","markdownRadius":"","markdownText":"","markdownTitle":"","markdownTitleFont":"","mdCodeBackground":"","mdCodeFont":"","mdCodeRadius":"","mdCodeTabs":"","mdCodeText":"","tableEdges":"","tableHead":"","tableHeadText":"","tableRow":"","tableStripe":"","tableText":"","text":"","title":""}},"main_body":{"type":"links"},"colors":{"highlight":"","main":"#000000","main_alt":"","header_text":"","body_highlight":"#367ED4","custom_login_link_color":""},"typography":{"headline":"Open+Sans:400:sans-serif","body":"Open+Sans:400:sans-serif","typekit":false,"tk_key":"","tk_headline":"","tk_body":""},"header":{"style":"custom","img":["https://files.readme.io/931b99b-banner.png","931b99b-banner.png",1253,218,"#000000",null,"647fedd793c708000af4eb4f"],"img_size":"cover","img_pos":"tl"},"body":{"style":"none"},"global_landing_page":{"html":"","redirect":""},"referenceSimpleMode":true,"referenceLayout":"row","link_logo_to_url":true,"theme":"solid","colorScheme":"light","overlay":"triangles","landing":true,"sticky":false,"hide_logo":true,"childrenAsPills":false,"subheaderStyle":"links","splitReferenceDocs":false,"showMetricsInReference":true,"logo":["https://files.readme.io/45785f4-brandmark-blue.svg","readme.svg",60,60,"#048ef5"],"loginLogo":[],"logo_white":["https://files.readme.io/b36afb9-small-Rackspace_Technology_Logo_RGB_WHT.png","Rackspace_Technology_Logo_RGB_WHT.png",259,80,"#ffffff","https://files.readme.io/c51eb39-Rackspace_Technology_Logo_RGB_WHT.png"],"logo_white_use":true,"logo_large":true,"favicon":["https://files.readme.io/03d0889-favicon.ico","favicon.ico",32,32,"#000000"],"stylesheet":"","stylesheet_hub2":"@media (max-width: 390px) {\n .Header-left-nav2xWPWMNHOGf_ {\n\t\tdisplay: none !important;\n }\n}\n\n@media (max-width: 768px) {\n .rm-SearchToggle {\n \twidth: unset !important;\n }\n}\n\nh2,\nh3,\nh4,\n.markdown-body h2,\n.markdown-body h3,\n.markdown-body h4 {\n\tcolor: #64005A !important;\n}\n\n/*----------------------------\nGlobal Header Changes\n-----------------------------*/\n.App header .rm-Container {\n max-width: inherit;\n}\n\n/*----------------------------\nCustom 404 Error Page Styles\n----------------------------*/\n\n.rm-LandingPageHeader h1 {\n color: white;\n}\n\nheader .rm-Container.rm-Container_flex {\n\tbackground-color: black;\n}\n\n.custom-page-not-found-message {\n\ttext-align: center;\n}\n\n.custom-page-not-found-message ul,\n.custom-page-not-found-message ul li {\n\ttext-align: initial;\n}\n\n.centered-list {\n\tpadding: 0 30%;\n}\n\n.rm-CustomPage h1 {\n\twidth: 100%;\n position: relative;\n text-align: center;\n}\n.rm-CustomPage h1::before {\n content: \"//www.marisma21.com/support/docs/\";\n display: block;\n\tbackground-image: url(\"https://files.readme.io/6228383-No-Result-Found.png\");\n height: 100px;\n margin-bottom: 2rem;\n text-align: center;\n background-position: center;\n background-repeat: no-repeat;\n}\n\n\nfooter {\n background-color: #3B3F45;\n color: $color-white;\n font-size: 0.8rem;\n letter-spacing: 0.025em;\n position: relative;\n z-index: 1;\n text-align: left;\n}\n\nfooter .container {\n\tdisplay: flex;\n flex-wrap: wrap;\n}\n\nfooter .basement-container {\n\tflex: 0 100%;\n background-color: black;\n}\n\nfooter .markdown-body {\n\tmargin: 40px;\n}\n\nfooter .markdown-body h5 {\n color: white;\n font-size: 10px;\n}\nfooter ul {\n float: left;\n}\nfooter li {\n\tlist-style: none;\n}\nfooter li a {\n\ttext-decoration: none;\n}\n\n/* #hub-sidebar {display: none;} */","stylesheet_hub3":"","javascript":"","javascript_hub2":"","html_promo":"","html_body":"","html_footer":"
\n
\n
Developer Network
\n \n
\n \n \n\t\t
\n \t\t\n\t\t
\n
","html_head":"","html_footer_meta":"","html_hidelinks":false,"showVersion":false,"hideTableOfContents":false,"nextStepsLabel":"","promos":[{"extras":{"type":"buttons","buttonPrimary":"docs","buttonSecondary":"reference"},"title":"Rackspace Customer Support Documentation","text":"Rackspace support and API documentation for all our services.","_id":"636d314a7b2cc300312af863"}],"changelog":{"layoutExpanded":false,"showAuthor":true,"showExactDate":false},"allowApiExplorerJsonEditor":false},"custom_domain":"docs.rackspace.com","childrenProjects":[],"description":"API and Support documentation for Rackspace Technology products and services.","error404":"page-not-found","experiments":[],"first_page":"landing","flags":{"allowApiExplorerJsonEditor":false,"allowDarkMode":false,"alwaysShowDocPublishStatus":false,"allowXFrame":false,"correctnewlines":false,"dashReact":false,"disablePasswordlessLogin":false,"directGoogleToStableVersion":false,"disableAnonForum":false,"enterprise":false,"graphql":false,"migrationRun":false,"migrationSwaggerRun":false,"myDevelopers":false,"newEditor":true,"newEditorDash":true,"newMarkdownBetaProgram":true,"newSearch":true,"oauth":false,"oldMarkdown":false,"rdmdCompatibilityMode":false,"reviewWorkflow":true,"singleProjectEnterprise":false,"speedyRender":false,"staging":false,"star":false,"swagger":false,"translation":false,"useReactApp":true,"useReactGLP":false,"superHub":false,"developerDashboard":false,"allowReusableOTPs":false,"dashHomeRefresh":false,"owlbotAi":false,"apiV2":false,"git":{"read":false,"write":false},"superHubBeta":false,"dashQuickstart":false,"disableAutoTranslate":false,"customBlocks":false,"devDashHub":false,"disableSAMLScoping":false,"allowUnsafeCustomHtmlSuggestionsFromNonAdmins":false,"apiAccessRevoked":false},"fullBaseUrl":"https://docs.rackspace.com/","glossaryTerms":[{"_id":"636d314a7b2cc300312af862","term":"parliament","definition":"Owls are generally solitary, but when seen together the group is called a 'parliament'!"}],"graphqlSchema":"","gracePeriod":{"enabled":false,"endsAt":null},"hasOneChild":false,"healthCheck":{"provider":"","settings":{}},"intercom_secure_emailonly":false,"intercom":"","is_active":true,"internal":"","landing_bottom":[{"type":"docs","alignment":"left","pageType":"Documentation"},{"type":"docs","alignment":"left","pageType":"Reference"}],"metrics":{"realtime":{"dashEnabled":false},"monthlyLimit":0,"planLimit":1000000,"thumbsEnabled":true},"modules":{"landing":true,"docs":true,"examples":true,"reference":true,"graphql":false,"changelog":false,"discuss":false,"suggested_edits":true,"logs":false,"custompages":true,"tutorials":false},"name":"Rackspace Technology Documentation","nav_names":{"docs":"Documentation","reference":"","changelog":"Technical Blogs","discuss":"","tutorials":"","recipes":""},"oauth_url":"","onboardingCompleted":{"documentation":true,"appearance":true,"jwt":true,"api":true,"logs":true,"domain":true,"metricsSDK":false},"owlbot":{"enabled":false,"isPaying":false,"customization":{"answerLength":"long","customTone":"","defaultAnswer":"","forbiddenWords":"","tone":"neutral"}},"owner":"62ebe6e6767589001ace3a5e","plan":"business2018","planOverride":"","planTrial":"business2018","readmeScore":{"components":{"newDesign":{"enabled":true,"points":25},"reference":{"enabled":true,"points":50},"tryItNow":{"enabled":true,"points":35},"syncingOAS":{"enabled":true,"points":10},"customLogin":{"enabled":false,"points":25},"metrics":{"enabled":false,"points":40},"recipes":{"enabled":false,"points":15},"pageVoting":{"enabled":true,"points":1},"suggestedEdits":{"enabled":true,"points":10},"support":{"enabled":false,"points":5},"htmlLanding":{"enabled":false,"points":5},"guides":{"enabled":true,"points":10},"changelog":{"enabled":false,"points":5},"glossary":{"enabled":false,"points":1},"variables":{"enabled":true,"points":1},"integrations":{"enabled":false,"points":2}},"totalScore":142},"reCaptchaSiteKey":"","reference":{"alwaysUseDefaults":true,"defaultExpandResponseExample":false},"stable":{"_id":"636d314a7b2cc300312af866","version":"1.0","version_clean":"1.0.0","codename":"","is_stable":true,"is_beta":true,"is_hidden":false,"is_deprecated":false,"categories":["636d314a7b2cc300312af868","636d314a7b2cc300312af868","6372011ade7b7600a2343971","63726bb1975454004c244cf0","6376be12127d9900031599e1","63774b1d9eef4a00e5b62f18","63ff1e02b3738700445b26b4","63ff83dd43c817007346d470","64107a6ff9a9400061fb465a","64107a750b81930011506490","64107a79fc13c0005ed4836d","64107a7c9cf8520011a62bd9","64107a7fee1584001f61f947","641082b90f3ef4000b43ef26","641e010c3515610d761cf71d","641e0fe685ebf8003c2ac2e9","641e1030fe15970059b83d7a","641e10fed239e90035bb5924","643976eb94d370000deca9c5","643eb4d1f195600074707bde","643edb1078e8af00581d6025","6446e6cd4c6c320012421eba","64471a0483c65f003cc90679","6447fa1204508d167ad74187","644acc292835070056a1ffc2","64512c3398180c0032bcebc2","64516fe83f49d100296cd1bd","645171e4f1fb03006c7ee494","6451751e0ac9da001158d36a","64518259f068f50477d88696","64528ac2439fe20018a1136d","64529bbd1df7160064bb4130","6452a2c25889bb0c1e2603c2","6452a5b8154b870116b0541c","6452a5d3173e670068a40e04","6452a5f3254968001a6a8591","6452a6785abf210bdfe90146","6452b20b90709a0e007dcd10","6452b55b5a587200583ffd21","6452d52eeccf7c03cc275a95","645374b2c2a2640527e72fa2","6453b5166cb45618d546ca72","645477a8f90ece004ad0f609","6454aee1a6984a002f419059","6454af754df037000a477f38","64550c22aed895000b35e4e5","64551057a6984a002f47639f","645531b975d48b11b616e04c","645539b8f98098150309e05b","645544ce03e4210923c460e0","645546ff818fde20d9540305","645547eb6c0fef1e25749bfd","645549398c26ca0825a54daa","6455499c590d5d004bed6ea4","64554a2643d50200424c949f","64554a49f549ec00603ffca9","64554a62e79d4d158bb7c7e6","6455542d375c23005fe8b0e6","64555468d1f36d1496d6cdc8","64555815aa3ef3004371a359","6455593a98a9f21f277c445e","645560f1397690015ef4605f","6455702c1fbcf7000aa29af8","6458746a53771c01d5540ea1","64587a7f5cc705003d964d2c","645882b110a29802bb76f633","6458a6b24e80bc00745061e5","6458c4a6b80425005fe1eab2","6458c7173e18d001d7e62202","6458d57d5aa615002563ce8b","6458d6aae642620012783f2b","64598b4afed949000a631205","6459f83ed3e7e41076e6f7ac","645a3186b28e5e1e83d7eb1a","645a69297458df011aa5e228","645a6e07e142ac003c199287","645a6ea1872f3e322bf9a1d3","645a798b3273ad32563c4725","645af6e9f35aa90ad1fd945f","645b585b6e8a3009c63793dd","645b9f6da30de608fe6a9a18","645ba1b6d34aea1c2d16b0e9","645cf4ad9fa1110a67ad1e44","6466c9be6219af0a2dce7bf6","6466df1311b66b09ca7824eb","646b7817157f4b0074ef0969","6476362675a20e0044c3806f","64763e486eb59e0074e36589","6476402c373b6d00239d7529","647641c860cf5f004b98257b","647670afde4a1500494a9afa","6476d61c7fb8dd000a4ba53e","6476df870c36a3004e86c355","64810347dea925001e9966a5","648173085c2c33002f3852ba","648174fe92e2fc0baa3e8257","648b1684be1002180b500145","6491634b44859c00253786f9","649d7050b8a47e003cc16e70","64e3258b6436f0002c5898d5","64e71501135f560041d1fe15","651592d5e816a81977972e97","6554f620ea420b004e5e098b","657b1ac6ee3b67003015b961","658a89e0d696ad001c089aa2"],"project":"636d314a7b2cc300312af861","releaseDate":"2022-11-10T17:13:46.826Z","createdAt":"2022-11-10T17:13:46.826Z","__v":1,"updatedAt":"2023-12-26T08:08:00.624Z"},"subdomain":"rackspace-test-1","subpath":"","topnav":{"left":[],"right":[{"type":"url","text":"System Status","url":"//www.marisma21.com/status/"},{"type":"url","text":"Portal Login","url":"//www.marisma21.com/support/login"}],"bottom":[],"edited":true},"trial":{"trialDeadlineEnabled":true,"trialEndsAt":"2023-05-01T17:13:46.463Z"},"translate":{"provider":"transifex","show_widget":false,"key_public":"","key_secret":"","org_name":"","project_name":"","languages":[]},"url":"//www.marisma21.com/support/","versions":[{"_id":"636d314a7b2cc300312af866","version":"1.0","version_clean":"1.0.0","codename":"","is_stable":true,"is_beta":true,"is_hidden":false,"is_deprecated":false,"categories":["636d314a7b2cc300312af868","636d314a7b2cc300312af868","6372011ade7b7600a2343971","63726bb1975454004c244cf0","6376be12127d9900031599e1","63774b1d9eef4a00e5b62f18","63ff1e02b3738700445b26b4","63ff83dd43c817007346d470","64107a6ff9a9400061fb465a","64107a750b81930011506490","64107a79fc13c0005ed4836d","64107a7c9cf8520011a62bd9","64107a7fee1584001f61f947","641082b90f3ef4000b43ef26","641e010c3515610d761cf71d","641e0fe685ebf8003c2ac2e9","641e1030fe15970059b83d7a","641e10fed239e90035bb5924","643976eb94d370000deca9c5","643eb4d1f195600074707bde","643edb1078e8af00581d6025","6446e6cd4c6c320012421eba","64471a0483c65f003cc90679","6447fa1204508d167ad74187","644acc292835070056a1ffc2","64512c3398180c0032bcebc2","64516fe83f49d100296cd1bd","645171e4f1fb03006c7ee494","6451751e0ac9da001158d36a","64518259f068f50477d88696","64528ac2439fe20018a1136d","64529bbd1df7160064bb4130","6452a2c25889bb0c1e2603c2","6452a5b8154b870116b0541c","6452a5d3173e670068a40e04","6452a5f3254968001a6a8591","6452a6785abf210bdfe90146","6452b20b90709a0e007dcd10","6452b55b5a587200583ffd21","6452d52eeccf7c03cc275a95","645374b2c2a2640527e72fa2","6453b5166cb45618d546ca72","645477a8f90ece004ad0f609","6454aee1a6984a002f419059","6454af754df037000a477f38","64550c22aed895000b35e4e5","64551057a6984a002f47639f","645531b975d48b11b616e04c","645539b8f98098150309e05b","645544ce03e4210923c460e0","645546ff818fde20d9540305","645547eb6c0fef1e25749bfd","645549398c26ca0825a54daa","6455499c590d5d004bed6ea4","64554a2643d50200424c949f","64554a49f549ec00603ffca9","64554a62e79d4d158bb7c7e6","6455542d375c23005fe8b0e6","64555468d1f36d1496d6cdc8","64555815aa3ef3004371a359","6455593a98a9f21f277c445e","645560f1397690015ef4605f","6455702c1fbcf7000aa29af8","6458746a53771c01d5540ea1","64587a7f5cc705003d964d2c","645882b110a29802bb76f633","6458a6b24e80bc00745061e5","6458c4a6b80425005fe1eab2","6458c7173e18d001d7e62202","6458d57d5aa615002563ce8b","6458d6aae642620012783f2b","64598b4afed949000a631205","6459f83ed3e7e41076e6f7ac","645a3186b28e5e1e83d7eb1a","645a69297458df011aa5e228","645a6e07e142ac003c199287","645a6ea1872f3e322bf9a1d3","645a798b3273ad32563c4725","645af6e9f35aa90ad1fd945f","645b585b6e8a3009c63793dd","645b9f6da30de608fe6a9a18","645ba1b6d34aea1c2d16b0e9","645cf4ad9fa1110a67ad1e44","6466c9be6219af0a2dce7bf6","6466df1311b66b09ca7824eb","646b7817157f4b0074ef0969","6476362675a20e0044c3806f","64763e486eb59e0074e36589","6476402c373b6d00239d7529","647641c860cf5f004b98257b","647670afde4a1500494a9afa","6476d61c7fb8dd000a4ba53e","6476df870c36a3004e86c355","64810347dea925001e9966a5","648173085c2c33002f3852ba","648174fe92e2fc0baa3e8257","648b1684be1002180b500145","6491634b44859c00253786f9","649d7050b8a47e003cc16e70","64e3258b6436f0002c5898d5","64e71501135f560041d1fe15","651592d5e816a81977972e97","6554f620ea420b004e5e098b","657b1ac6ee3b67003015b961","658a89e0d696ad001c089aa2"],"project":"636d314a7b2cc300312af861","releaseDate":"2022-11-10T17:13:46.826Z","createdAt":"2022-11-10T17:13:46.826Z","__v":1,"updatedAt":"2023-12-26T08:08:00.624Z"}],"variableDefaults":[{"source":"security","_id":"641e10ffd239e90035bb5928","name":"api_key","type":"apiKey","apiSetting":"641e10fed239e90035bb5923"},{"source":"security","_id":"641e10ffd239e90035bb5927","name":"petstore_auth","type":"oauth2","apiSetting":"641e10fed239e90035bb5923"},null,{"source":"security","_id":"645a798c3273ad32563c4726","name":"noauthAuth","type":"http","scheme":"noauth","apiSetting":"645a798b3273ad32563c4724"}],"webhookEnabled":false,"isHubEditable":true},"projectStore":{"data":{"allow_crawlers":"disabled","canonical_url":null,"description":"API and Support documentation for Rackspace Technology products and services.","homepage_url":"//www.marisma21.com/support/","name":"Rackspace Technology Documentation","redirects":[],"sitemap":"disabled","subdomain":"rackspace-test-1","suggested_edits":"enabled","uri":"/projects/me","custom_login":{"login_url":null,"logout_url":null},"pages":{"not_found":"/custom_pages/page-not-found"},"privacy":{"view":"public","password":null},"reference":{"defaults":"always_use","response_examples":"collapsed"},"plan":{"type":"business2018","grace_period":{"enabled":false,"end_date":null},"trial":{"expired":false,"end_date":"2023-05-01T17:13:46.463Z"}},"health_check":{"provider":"none","settings":{"manual":{"status":"down","url":null},"statuspage":{"id":null}}},"integrations":{"bing":{"verify":null},"google":{"analytics":null,"site_verification":null},"heap":{"id":null},"koala":{"key":null},"localize":{"key":null},"recaptcha":{"site_key":null,"secret_key":null},"segment":{"key":null,"domain":null},"typekit":{"key":null},"zendesk":{"subdomain":null},"intercom":{"app_id":null,"secure_mode":{"key":null,"email_only":false}}},"permissions":{"appearance":{"private_label":"enabled","custom_code":{"css":"enabled","html":"enabled","js":"disabled"}}},"appearance":{"table_of_contents":"enabled","whats_next_label":null,"brand":{"primary_color":"#000000","link_color":"#367ED4","theme":"light"},"changelog":{"layout":"collapsed","show_author":true,"show_exact_date":false},"explorer":{"json_editor":"disabled"},"footer":{"readme_logo":"hide"},"custom_code":{"css":"@media (max-width: 390px) {\n .Header-left-nav2xWPWMNHOGf_ {\n\t\tdisplay: none !important;\n }\n}\n\n@media (max-width: 768px) {\n .rm-SearchToggle {\n \twidth: unset !important;\n }\n}\n\nh2,\nh3,\nh4,\n.markdown-body h2,\n.markdown-body h3,\n.markdown-body h4 {\n\tcolor: #64005A !important;\n}\n\n/*----------------------------\nGlobal Header Changes\n-----------------------------*/\n.App header .rm-Container {\n max-width: inherit;\n}\n\n/*----------------------------\nCustom 404 Error Page Styles\n----------------------------*/\n\n.rm-LandingPageHeader h1 {\n color: white;\n}\n\nheader .rm-Container.rm-Container_flex {\n\tbackground-color: black;\n}\n\n.custom-page-not-found-message {\n\ttext-align: center;\n}\n\n.custom-page-not-found-message ul,\n.custom-page-not-found-message ul li {\n\ttext-align: initial;\n}\n\n.centered-list {\n\tpadding: 0 30%;\n}\n\n.rm-CustomPage h1 {\n\twidth: 100%;\n position: relative;\n text-align: center;\n}\n.rm-CustomPage h1::before {\n content: \"//www.marisma21.com/support/docs/\";\n display: block;\n\tbackground-image: url(\"https://files.readme.io/6228383-No-Result-Found.png\");\n height: 100px;\n margin-bottom: 2rem;\n text-align: center;\n background-position: center;\n background-repeat: no-repeat;\n}\n\n\nfooter {\n background-color: #3B3F45;\n color: $color-white;\n font-size: 0.8rem;\n letter-spacing: 0.025em;\n position: relative;\n z-index: 1;\n text-align: left;\n}\n\nfooter .container {\n\tdisplay: flex;\n flex-wrap: wrap;\n}\n\nfooter .basement-container {\n\tflex: 0 100%;\n background-color: black;\n}\n\nfooter .markdown-body {\n\tmargin: 40px;\n}\n\nfooter .markdown-body h5 {\n color: white;\n font-size: 10px;\n}\nfooter ul {\n float: left;\n}\nfooter li {\n\tlist-style: none;\n}\nfooter li a {\n\ttext-decoration: none;\n}\n\n/* #hub-sidebar {display: none;} */","js":null,"html":{"header":null,"home_footer":"
\n
\n
Developer Network
\n \n
\n \n \n\t\t
\n \t\t\n\t\t
\n
","page_footer":null}},"markdown":{"callouts":{"icon_font":"emojis"}},"logo":{"size":"large","dark_mode":{"uri":null,"url":"https://files.readme.io/b36afb9-small-Rackspace_Technology_Logo_RGB_WHT.png","name":"Rackspace_Technology_Logo_RGB_WHT.png","width":259,"height":80,"color":"#ffffff","links":{"original_url":"https://files.readme.io/c51eb39-Rackspace_Technology_Logo_RGB_WHT.png"}},"main":{"uri":null,"url":"https://files.readme.io/45785f4-brandmark-blue.svg","name":"readme.svg","width":60,"height":60,"color":"#048ef5","links":{"original_url":null}},"favicon":{"uri":null,"url":"https://files.readme.io/03d0889-favicon.ico","name":"favicon.ico","width":32,"height":32,"color":"#000000","links":{"original_url":null}}},"navigation":{"first_page":"landing_page","left":[],"logo_link":"homepage","right":[{"type":"link_url","title":"System Status","url":"//www.marisma21.com/status/","custom_page":null},{"type":"link_url","title":"Portal Login","url":"//www.marisma21.com/support/login","custom_page":null}],"sub_nav":[],"subheader_layout":"links","version":"disabled","links":{"home":{"label":"Home","visibility":"enabled"},"graphql":{"label":"GraphQL","visibility":"disabled"},"guides":{"label":"Guides","alias":"Documentation","visibility":"enabled"},"reference":{"label":"API Reference","alias":null,"visibility":"enabled"},"recipes":{"label":"Recipes","alias":null,"visibility":"disabled"},"changelog":{"label":"Changelog","alias":"Technical Blogs","visibility":"disabled"},"discussions":{"label":"Discussions","alias":null,"visibility":"disabled"}}},"header":{"type":"overlay","gradient_color":null,"overlay":{"fill":"cover","type":"custom","position":"top-left","image":{"uri":"/images/647fedd793c708000af4eb4f","url":"https://files.readme.io/931b99b-banner.png","name":"931b99b-banner.png","width":1253,"height":218,"color":"#000000","links":{"original_url":null}}}}}}},"version":{"_id":"636d314a7b2cc300312af866","version":"1.0","version_clean":"1.0.0","codename":"","is_stable":true,"is_beta":true,"is_hidden":false,"is_deprecated":false,"categories":["636d314a7b2cc300312af868","636d314a7b2cc300312af868","6372011ade7b7600a2343971","63726bb1975454004c244cf0","6376be12127d9900031599e1","63774b1d9eef4a00e5b62f18","63ff1e02b3738700445b26b4","63ff83dd43c817007346d470","64107a6ff9a9400061fb465a","64107a750b81930011506490","64107a79fc13c0005ed4836d","64107a7c9cf8520011a62bd9","64107a7fee1584001f61f947","641082b90f3ef4000b43ef26","641e010c3515610d761cf71d","641e0fe685ebf8003c2ac2e9","641e1030fe15970059b83d7a","641e10fed239e90035bb5924","643976eb94d370000deca9c5","643eb4d1f195600074707bde","643edb1078e8af00581d6025","6446e6cd4c6c320012421eba","64471a0483c65f003cc90679","6447fa1204508d167ad74187","644acc292835070056a1ffc2","64512c3398180c0032bcebc2","64516fe83f49d100296cd1bd","645171e4f1fb03006c7ee494","6451751e0ac9da001158d36a","64518259f068f50477d88696","64528ac2439fe20018a1136d","64529bbd1df7160064bb4130","6452a2c25889bb0c1e2603c2","6452a5b8154b870116b0541c","6452a5d3173e670068a40e04","6452a5f3254968001a6a8591","6452a6785abf210bdfe90146","6452b20b90709a0e007dcd10","6452b55b5a587200583ffd21","6452d52eeccf7c03cc275a95","645374b2c2a2640527e72fa2","6453b5166cb45618d546ca72","645477a8f90ece004ad0f609","6454aee1a6984a002f419059","6454af754df037000a477f38","64550c22aed895000b35e4e5","64551057a6984a002f47639f","645531b975d48b11b616e04c","645539b8f98098150309e05b","645544ce03e4210923c460e0","645546ff818fde20d9540305","645547eb6c0fef1e25749bfd","645549398c26ca0825a54daa","6455499c590d5d004bed6ea4","64554a2643d50200424c949f","64554a49f549ec00603ffca9","64554a62e79d4d158bb7c7e6","6455542d375c23005fe8b0e6","64555468d1f36d1496d6cdc8","64555815aa3ef3004371a359","6455593a98a9f21f277c445e","645560f1397690015ef4605f","6455702c1fbcf7000aa29af8","6458746a53771c01d5540ea1","64587a7f5cc705003d964d2c","645882b110a29802bb76f633","6458a6b24e80bc00745061e5","6458c4a6b80425005fe1eab2","6458c7173e18d001d7e62202","6458d57d5aa615002563ce8b","6458d6aae642620012783f2b","64598b4afed949000a631205","6459f83ed3e7e41076e6f7ac","645a3186b28e5e1e83d7eb1a","645a69297458df011aa5e228","645a6e07e142ac003c199287","645a6ea1872f3e322bf9a1d3","645a798b3273ad32563c4725","645af6e9f35aa90ad1fd945f","645b585b6e8a3009c63793dd","645b9f6da30de608fe6a9a18","645ba1b6d34aea1c2d16b0e9","645cf4ad9fa1110a67ad1e44","6466c9be6219af0a2dce7bf6","6466df1311b66b09ca7824eb","646b7817157f4b0074ef0969","6476362675a20e0044c3806f","64763e486eb59e0074e36589","6476402c373b6d00239d7529","647641c860cf5f004b98257b","647670afde4a1500494a9afa","6476d61c7fb8dd000a4ba53e","6476df870c36a3004e86c355","64810347dea925001e9966a5","648173085c2c33002f3852ba","648174fe92e2fc0baa3e8257","648b1684be1002180b500145","6491634b44859c00253786f9","649d7050b8a47e003cc16e70","64e3258b6436f0002c5898d5","64e71501135f560041d1fe15","651592d5e816a81977972e97","6554f620ea420b004e5e098b","657b1ac6ee3b67003015b961","658a89e0d696ad001c089aa2"],"project":"636d314a7b2cc300312af861","releaseDate":"2022-11-10T17:13:46.826Z","createdAt":"2022-11-10T17:13:46.826Z","__v":1,"updatedAt":"2023-12-26T08:08:00.624Z"}},"reqUrl":"/docs/set-up-an-apache-vhost-on-ubuntu-20-04-and-debian-10","version":{"_id":"636d314a7b2cc300312af866","version":"1.0","version_clean":"1.0.0","codename":"","is_stable":true,"is_beta":true,"is_hidden":false,"is_deprecated":false,"categories":["636d314a7b2cc300312af868","636d314a7b2cc300312af868","6372011ade7b7600a2343971","63726bb1975454004c244cf0","6376be12127d9900031599e1","63774b1d9eef4a00e5b62f18","63ff1e02b3738700445b26b4","63ff83dd43c817007346d470","64107a6ff9a9400061fb465a","64107a750b81930011506490","64107a79fc13c0005ed4836d","64107a7c9cf8520011a62bd9","64107a7fee1584001f61f947","641082b90f3ef4000b43ef26","641e010c3515610d761cf71d","641e0fe685ebf8003c2ac2e9","641e1030fe15970059b83d7a","641e10fed239e90035bb5924","643976eb94d370000deca9c5","643eb4d1f195600074707bde","643edb1078e8af00581d6025","6446e6cd4c6c320012421eba","64471a0483c65f003cc90679","6447fa1204508d167ad74187","644acc292835070056a1ffc2","64512c3398180c0032bcebc2","64516fe83f49d100296cd1bd","645171e4f1fb03006c7ee494","6451751e0ac9da001158d36a","64518259f068f50477d88696","64528ac2439fe20018a1136d","64529bbd1df7160064bb4130","6452a2c25889bb0c1e2603c2","6452a5b8154b870116b0541c","6452a5d3173e670068a40e04","6452a5f3254968001a6a8591","6452a6785abf210bdfe90146","6452b20b90709a0e007dcd10","6452b55b5a587200583ffd21","6452d52eeccf7c03cc275a95","645374b2c2a2640527e72fa2","6453b5166cb45618d546ca72","645477a8f90ece004ad0f609","6454aee1a6984a002f419059","6454af754df037000a477f38","64550c22aed895000b35e4e5","64551057a6984a002f47639f","645531b975d48b11b616e04c","645539b8f98098150309e05b","645544ce03e4210923c460e0","645546ff818fde20d9540305","645547eb6c0fef1e25749bfd","645549398c26ca0825a54daa","6455499c590d5d004bed6ea4","64554a2643d50200424c949f","64554a49f549ec00603ffca9","64554a62e79d4d158bb7c7e6","6455542d375c23005fe8b0e6","64555468d1f36d1496d6cdc8","64555815aa3ef3004371a359","6455593a98a9f21f277c445e","645560f1397690015ef4605f","6455702c1fbcf7000aa29af8","6458746a53771c01d5540ea1","64587a7f5cc705003d964d2c","645882b110a29802bb76f633","6458a6b24e80bc00745061e5","6458c4a6b80425005fe1eab2","6458c7173e18d001d7e62202","6458d57d5aa615002563ce8b","6458d6aae642620012783f2b","64598b4afed949000a631205","6459f83ed3e7e41076e6f7ac","645a3186b28e5e1e83d7eb1a","645a69297458df011aa5e228","645a6e07e142ac003c199287","645a6ea1872f3e322bf9a1d3","645a798b3273ad32563c4725","645af6e9f35aa90ad1fd945f","645b585b6e8a3009c63793dd","645b9f6da30de608fe6a9a18","645ba1b6d34aea1c2d16b0e9","645cf4ad9fa1110a67ad1e44","6466c9be6219af0a2dce7bf6","6466df1311b66b09ca7824eb","646b7817157f4b0074ef0969","6476362675a20e0044c3806f","64763e486eb59e0074e36589","6476402c373b6d00239d7529","647641c860cf5f004b98257b","647670afde4a1500494a9afa","6476d61c7fb8dd000a4ba53e","6476df870c36a3004e86c355","64810347dea925001e9966a5","648173085c2c33002f3852ba","648174fe92e2fc0baa3e8257","648b1684be1002180b500145","6491634b44859c00253786f9","649d7050b8a47e003cc16e70","64e3258b6436f0002c5898d5","64e71501135f560041d1fe15","651592d5e816a81977972e97","6554f620ea420b004e5e098b","657b1ac6ee3b67003015b961","658a89e0d696ad001c089aa2"],"project":"636d314a7b2cc300312af861","releaseDate":"2022-11-10T17:13:46.826Z","createdAt":"2022-11-10T17:13:46.826Z","__v":1,"updatedAt":"2023-12-26T08:08:00.624Z"},"lang":"en","langFull":"Default","isDetachedProductionSite":false,"rdmdOpts":{"normalize":true,"correctnewlines":false,"compatibilityMode":false}}">
Baidu
map