config.js 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. module.exports = {
  2. locales: {
  3. "/": {
  4. lang: "en-US",
  5. title: "Nginx Proxy Manager",
  6. description: "Expose your services easily and securely"
  7. }
  8. },
  9. head: [
  10. ["link", { rel: "icon", href: "/icon.png" }],
  11. ["meta", { name: "description", content: "Docker container and built in Web Application for managing Nginx proxy hosts with a simple, powerful interface, providing free SSL support via Let's Encrypt" }],
  12. ["meta", { property: "og:title", content: "Nginx Proxy Manager" }],
  13. ["meta", { property: "og:description", content: "Docker container and built in Web Application for managing Nginx proxy hosts with a simple, powerful interface, providing free SSL support via Let's Encrypt"}],
  14. ["meta", { property: "og:type", content: "website" }],
  15. ["meta", { property: "og:url", content: "https://nginxproxymanager.com/" }],
  16. ["meta", { property: "og:image", content: "https://nginxproxymanager.com/icon.png" }],
  17. ["meta", { name: "twitter:card", content: "summary"}],
  18. ["meta", { name: "twitter:title", content: "Nginx Proxy Manager"}],
  19. ["meta", { name: "twitter:description", content: "Docker container and built in Web Application for managing Nginx proxy hosts with a simple, powerful interface, providing free SSL support via Let's Encrypt"}],
  20. ["meta", { name: "twitter:image", content: "https://nginxproxymanager.com/icon.png"}],
  21. ["meta", { name: "twitter:alt", content: "Nginx Proxy Manager"}],
  22. ],
  23. themeConfig: {
  24. logo: "/icon.png",
  25. // the GitHub repo path
  26. repo: "jc21/nginx-proxy-manager",
  27. // the label linking to the repo
  28. repoLabel: "GitHub",
  29. // if your docs are not at the root of the repo:
  30. docsDir: "docs",
  31. // defaults to false, set to true to enable
  32. editLinks: true,
  33. locales: {
  34. "/": {
  35. // text for the language dropdown
  36. selectText: "Languages",
  37. // label for this locale in the language dropdown
  38. label: "English",
  39. // Custom text for edit link. Defaults to "Edit this page"
  40. editLinkText: "Edit this page on GitHub",
  41. // Custom navbar values
  42. nav: [{ text: "Setup", link: "/setup/" }],
  43. // Custom sidebar values
  44. sidebar: [
  45. "/",
  46. ["/guide/", "Guide"],
  47. ["/screenshots/", "Screenshots"],
  48. ["/setup/", "Setup Instructions"],
  49. ["/advanced-config/", "Advanced Configuration"],
  50. ["/upgrading/", "Upgrading"],
  51. ["/faq/", "Frequently Asked Questions"],
  52. ["/third-party/", "Third Party"]
  53. ]
  54. }
  55. }
  56. },
  57. plugins: [
  58. [
  59. "@vuepress/google-analytics",
  60. {
  61. ga: "UA-99675467-4"
  62. }
  63. ],
  64. [
  65. "sitemap",
  66. {
  67. hostname: "https://nginxproxymanager.com"
  68. }
  69. ],
  70. [
  71. 'vuepress-plugin-zooming',
  72. {
  73. selector: '.zooming',
  74. delay: 1000,
  75. options: {
  76. bgColor: 'black',
  77. zIndex: 10000,
  78. },
  79. },
  80. ],
  81. ]
  82. };