config.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. ["/third-party/", "Third Party"]
  51. ]
  52. }
  53. }
  54. },
  55. plugins: [
  56. [
  57. "@vuepress/google-analytics",
  58. {
  59. ga: "UA-99675467-4"
  60. }
  61. ],
  62. [
  63. "sitemap",
  64. {
  65. hostname: "https://nginxproxymanager.com"
  66. }
  67. ],
  68. [
  69. 'vuepress-plugin-zooming',
  70. {
  71. selector: '.zooming',
  72. delay: 1000,
  73. options: {
  74. bgColor: 'black',
  75. zIndex: 10000,
  76. },
  77. },
  78. ],
  79. ]
  80. };