diff --git a/templates/onlyoffice-deployment.yaml b/templates/onlyoffice-deployment.yaml
index 92af5f5ba661359492824afbe2b879e8462dcb4a..2d8533162b3808ad1084ae14091ac8cc086f4b0e 100644
--- a/templates/onlyoffice-deployment.yaml
+++ b/templates/onlyoffice-deployment.yaml
@@ -79,6 +79,9 @@ spec:
             - name: http
               containerPort: {{ .Values.onlyoffice.containerPort }}
               protocol: TCP
+            - name: spellchecker
+              containerPort: 8080
+              protocol: TCP
           resources:
             {{- toYaml .Values.onlyoffice.resources | nindent 12 }}
           securityContext:
diff --git a/templates/onlyoffice-ingress.yaml b/templates/onlyoffice-ingress.yaml
index 01ce893edb667c387530ed94540a7a7ba8ddebf9..88329d13f34add01b8f7936345d93dec31b8dbce 100644
--- a/templates/onlyoffice-ingress.yaml
+++ b/templates/onlyoffice-ingress.yaml
@@ -30,11 +30,13 @@ spec:
     - host: {{ . | quote }}
       http:
         paths:
-  {{- range $ingressPaths }}
-          - path: {{ . }}
+          - path: "/"
             backend:
               serviceName: {{ $fullName }}
               servicePort: http
-  {{- end }}
+          - path: "/spellchecker"
+            backend:
+              serviceName: {{ $fullName }}
+              servicePort: spellchecker
   {{- end }}
 {{- end }}
diff --git a/values-local.yaml.example b/values-local.yaml.example
index 73243a3f6302b2b876a4568ee6786d342617fc23..3206a7f1ff162cf73cc180b27cf561d704c241ac 100644
--- a/values-local.yaml.example
+++ b/values-local.yaml.example
@@ -31,8 +31,6 @@ onlyoffice:
   jwtSecret: Set any random secret for JWT here
   ingress:
     enabled: true
-    paths:
-      - "/"
     hosts:
       - "office.your.domain"