{"id":50604,"date":"2024-07-24T11:51:39","date_gmt":"2024-07-24T09:51:39","guid":{"rendered":"https:\/\/community.simplifier.io\/doc\/einstellungen\/native-einstellungen-include-conf\/"},"modified":"2026-02-05T13:01:25","modified_gmt":"2026-02-05T11:01:25","slug":"native-einstellungen-include-conf","status":"publish","type":"manual_documentation","link":"https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/","title":{"rendered":"Native Einstellungen (include.conf)"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row row_content_display=&#8221;in_grid&#8221; row_content_display_align=&#8221;left&#8221; row_type=&#8221;row&#8221; stretch_row_type=&#8221;yes&#8221;][vc_column][vc_tta_tabs][vc_tta_section title=&#8221;Einrichtungskonfiguration&#8221; tab_id=&#8221;setup-configuration&#8221;][vc_message color=&#8221;warning&#8221; message_box_color=&#8221;warning&#8221; icon_fontawesome=&#8221;fas fa-exclamation-triangle&#8221;]\u00c4ndere keine nativen Server-Einstellungen ohne Anweisung von unserem <a href=\"https:\/\/community.simplifier.io\/de\/doc\/unterstuetzen\/\">Kundensupport<\/a>.[\/vc_message][vc_column_text css=&#8221;&#8221;]Um die Standard-Server-Einstellungen zu \u00e4ndern, musst du \u00fcber SSH auf die Server-Konsole zugreifen.<\/p>\n<p>Im Persistence-Ordner des Simplifier kannst du die Server-Einstellungen \u00e4ndern. Der Standardpfad daf\u00fcr ist \/var\/lib\/simplifier\/simplifier\/conf\/ (bis Release 8 war es: \/var\/lib\/simplifier\/data\/conf\/) <\/p>\n<h2>Schritt 1 &#8211; Zum Ordner wechseln<\/h2>\n<pre>cd \/<span class=\"hljs-keyword\">var<\/span>\/lib\/simplifier\/simplifier\/conf\/<\/pre>\n<h2>Schritt 2 &#8211; include.conf-Datei erstellen<\/h2>\n<p>Wenn die include.conf nicht existiert, erstelle eine neue Datei<\/p>\n<pre>touch include.conf<\/pre>\n<h2>Schritt 3 &#8211; Einstellungen \u00e4ndern<\/h2>\n<p>Um die Einstellungen zu \u00e4ndern, \u00f6ffne die Datei mit vim oder nano<\/p>\n<pre>nano include.conf<\/pre>\n<h2>Schritt 4 \u2013 Starte den Simplifier neu<\/h2>\n<p>Speichere die Datei und starte den Simplifier-Container neu, um die Einstellungen zu \u00fcbernehmen.[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;HTTP-Timeouts&#8221; tab_id=&#8221;http-timeout-setting&#8221;][vc_column_text]In einigen F\u00e4llen kann es notwendig sein, die HTTP-Timeouts oder die maximalen Verbindungen je nach Umgebung zu erweitern<\/p>\n<pre class=\"prettyprint prettyprinted\">akka\r\n{\r\n http {\r\n server {\r\n<code class=\"language-conf\">    <span class=\"com\"># The time after which an idle connection will be automatically closed.<\/span>\r\n    <span class=\"com\"># Set to `infinite` to completely disable idle connection timeouts.<\/span><span class=\"pln\">\r\n    idle<\/span><span class=\"pun\">-<\/span><span class=\"pln\">timeout <\/span><span class=\"pun\">=<\/span> <span class=\"lit\">60<\/span><span class=\"pln\"> s\r\n\r\n    <\/span><span class=\"com\"># Defines the default time period within which the application has to<\/span>\r\n    <span class=\"com\"># produce an HttpResponse for any given HttpRequest it received.<\/span>\r\n    <span class=\"com\"># The timeout begins to run when the *end* of the request has been<\/span>\r\n    <span class=\"com\"># received, so even potentially long uploads can have a short timeout.<\/span>\r\n    <span class=\"com\"># Set to `infinite` to completely disable request timeout checking.<\/span>\r\n    <span class=\"com\">#<\/span>\r\n    <span class=\"com\"># Make sure this timeout is smaller than the idle-timeout, otherwise,<\/span>\r\n    <span class=\"com\"># the idle-timeout will kick in first and reset the TCP connection<\/span>\r\n    <span class=\"com\"># without a response.<\/span>\r\n    <span class=\"com\">#<\/span>\r\n    <span class=\"com\"># If this setting is not `infinite` the HTTP server layer attaches a<\/span>\r\n    <span class=\"com\"># `Timeout-Access` header to the request, which enables programmatic<\/span>\r\n    <span class=\"com\"># customization of the timeout period and timeout response for each<\/span>\r\n    <span class=\"com\"># request individually.\r\n<\/span><span class=\"pln\">\r\n    request<\/span><span class=\"pun\">-<\/span><span class=\"pln\">timeout <\/span><span class=\"pun\">=<\/span> <span class=\"lit\">20<\/span><span class=\"pln\"> s<\/span><\/code> <code class=\"language-conf\"><span class=\"com\">    # the maximum number of concurrently accepted connections when binding a server using<\/span>\r\n    <span class=\"com\"># `Http().newServerAt().bindXYZ()` methods.<\/span>\r\n    <span class=\"com\">#<\/span>\r\n    <span class=\"com\"># This setting doesn't apply to the `Http().bind` method which will still<\/span>\r\n    <span class=\"com\"># deliver an unlimited backpressured stream of incoming connections.<\/span>\r\n    <span class=\"com\">#<\/span>\r\n    <span class=\"com\"># Note, that this setting limits the number of the connections on a best-effort basis.<\/span>\r\n    <span class=\"com\"># It does *not* strictly guarantee that the number of established TCP connections will never<\/span>\r\n    <span class=\"com\"># exceed the limit (but it will be approximately correct) because connection termination happens<\/span>\r\n    <span class=\"com\"># asynchronously. It also does *not* guarantee that the number of concurrently active handler<\/span>\r\n    <span class=\"com\"># flow materializations will never exceed the limit for the reason that it is impossible to reliably<\/span>\r\n    <span class=\"com\"># detect when a materialization has ended.\r\n<\/span><span class=\"pln\">\r\n    max<\/span><span class=\"pun\">-<\/span><span class=\"pln\">connections <\/span><span class=\"pun\">=<\/span> <span class=\"lit\">1024\r\n      <\/span><\/code>} } }<\/pre>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;HTTP-Payload-Gr\u00f6\u00dfe&#8221; tab_id=&#8221;http-payload-size&#8221;][vc_column_text]Wenn Sie Probleme mit gr\u00f6\u00dferen Nutzdaten bei der Verwendung unserer Client-API oder REST-, SOAP- oder oDATAv2-Aufrufe haben, verwenden Sie die folgenden Einstellungen:<\/p>\n<pre># HTTP Max Chunk Size anpassen, wenn die Nutzlast gr\u00f6\u00dfer als 1 MB ist (Standardwert)\r\nakka {\r\n http {\r\n parsing {\r\n max-chunk-size = 5m\r\n } \r\n }\r\n}<\/pre>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;HTTP-CORS&#8221; tab_id=&#8221;http-cors&#8221;][vc_column_text css=&#8221;&#8221;]Simplifier setzt CORS-Header seit MAKERS CHOICE 25-01 automatisch. Du kannst den Wert f\u00fcr den Parameter Access-Control-Allow-Origin anpassen: <\/p>\n<pre>akka-http-cors {\r\n# default: allowed-origins = \"*\"\r\nallowed-origins = [\"https:\/\/example.com\",\"https:\/\/other.host\"]\r\n}<\/pre>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Proxy&#8221; tab_id=&#8221;configure-proxy-setting&#8221;][vc_column_text]Wenn Sie einen Proxy-Server verwenden, um auf das Internet zuzugreifen, m\u00fcssen Sie die Proxy-Server-Informationen im Simplifier wie folgt einrichten:<\/p>\n<pre>proxy {\r\n host: \"proxy.org.com\"\r\n port: 3128\r\n byPassUrls: [\r\n \"google.de\",\r\n \"localhost\"\r\n ]\r\n}<\/pre>\n<p>[\/vc_column_text][vc_message]Der Parameter host sollte ohne Protokolle wie https:\/\/ und Secrets hinzugef\u00fcgt werden \u2013 nur der vollqualifizierte Hostname wie proxy.org.com[\/vc_message][\/vc_tta_section][vc_tta_section title=&#8221;Business-Objekt-Versionierung&#8221; tab_id=&#8221;business-object-versioning&#8221;][vc_column_text]Wenn du mehr Versionen f\u00fcr das Business-Funktions-Changelog ben\u00f6tigst, verwende die folgende Einstellung:<\/p>\n<pre>#business object versioning\r\nversioning {\r\n\r\n#defines the maximum number of BusinessObject Version History\r\nmaximumEntries: 200\r\n\r\n}<\/pre>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;SAP RFC-Assistent&#8221; tab_id=&#8221;sap-rfc-wizard&#8221;][vc_column_text]Um mehr SAP-Funktionsbausteine im App-Assistenten zu sammeln, kannst du entweder den Suchbegriff begrenzen oder die m\u00f6gliche Liste der Suchergebnisse mit der folgenden Einstellung erweitern:<\/p>\n<pre>#sap-rfc connector assistent\r\nrfc {\r\n\r\n#defines the maximum amount of returned operations by the backend (necessary due to the old metadata interface and some performance issues as well as high payload amounts) \r\nsuggestionLimit: 300\r\n\r\n}<\/pre>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;App-Generator-Einstellungen&#8221; tab_id=&#8221;app-generator-settings&#8221;][vc_column_text]Im Falle einer sehr gro\u00dfen Simplifier-Anwendung kann die Build-Zeit f\u00fcr die Generierung des Quellcodes wie in der folgenden Einstellung verl\u00e4ngert werden:<\/p>\n<pre># app deployment toolchain\r\ntoolchain {\r\n\r\n# general timeout for the UI5 build toolchain.\r\ntimeout: 120\r\n\r\n# timeout for building an application.\r\n# the time a deployment of an application can take.\r\n# If the deployment takes longer than this value, deplyoment is stopped and an error is thrown.\r\ndeploymentTimeout: 120\r\n\r\n# timeout for retrieving UI5 metadata\r\n# this value can have inpact on the WYSIWYG preview  \r\npropertiesLookupTimeout: 30\r\n\r\n}<\/pre>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Allgemeine Einstellungen&#8221; tab_id=&#8221;1731404556981-e0dbd21b-7bba&#8221;][vc_column_text css=&#8221;&#8221;]Im Falle eines Logeintrags, der dieser Fehlermeldung \u00e4hnelt:<\/p>\n<pre>[ERROR] businessObjectCall: jsonParseHandler: com.fasterxml.jackson.core.exc.StreamConstraintsException: String length (20047596) exceeds the maximum length (20000000)<\/pre>\n<p>k\u00f6nnen Sie das Limit erh\u00f6hen, indem Sie den folgenden Eintrag hinzuf\u00fcgen:<\/p>\n<pre>json {<br data-identifyelement=\"442\">  parsing {<br data-identifyelement=\"443\">  maxStringLength = 2147483647<br data-identifyelement=\"444\">  }<br data-identifyelement=\"445\">}<\/pre>\n<p>Einstellen von Timeouts f\u00fcr die Kommunikation zwischen den verschiedenen Simplifier-Containern:<\/p>\n<pre>hybrid {\r\n  timeout {\r\n  business-object = 10 Minuten\r\n  connector = 10 Minuten\r\n  }\r\n}\r\n<\/pre>\n<p>Wenn nach einem Neustart, z. B. einem automatisierten Neustart mit einem Quality Update, Simplifier keine Workflows, Workflow-Monitoring und\/oder Launchpad sichtbar hat, obwohl der Container l\u00e4uft, versuchen Sie, das Seed-Timeout zu erh\u00f6hen:<\/p>\n<pre>hybrid.akka.cluster.seed-node-timeout = 10s\r\n<\/pre>\n<p>[\/vc_column_text][\/vc_tta_section][vc_tta_section title=&#8221;Datenbank-Einstellungen&#8221; tab_id=&#8221;database-settings&#8221;][vc_column_text css=&#8221;&#8221;]<\/p>\n<pre>database.pool-size = 50<\/pre>\n<p>Diese Option definiert die Anzahl der parallelen Datenbankverbindungen, die dem Simplifier-Backend zur Verf\u00fcgung stehen. Wenn das Herstellen einer neuen Verbindung l\u00e4nger als 100 ms dauert, wird eine Warnung in die Logdatei geschrieben, die vorschl\u00e4gt, diesen Wert zu erh\u00f6hen.[\/vc_column_text][\/vc_tta_section][\/vc_tta_tabs][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>\u00c4ndere Server-Einstellungen, indem du auf die Konsole zugreifst, eine include.conf-Datei erstellst, Einstellungen anpasst und den Simplifier neu startest. HTTP-Timeouts, maximale Verbindungen und Chunk-Gr\u00f6\u00dfen k\u00f6nnen je nach Bedarf angepasst werden. <\/p>\n","protected":false},"author":3005,"featured_media":0,"parent":48057,"menu_order":170,"template":"","format":"standard","class_list":["post-50604","manual_documentation","type-manual_documentation","status-publish","format-standard","hentry","manualdocumentationcategory-aktueller-release"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Native Einstellungen (include.conf) - Simplifier Makers Club<\/title>\n<meta name=\"description\" content=\"\u00c4ndere Server-Einstellungen, indem du auf die Konsole zugreifst, eine include.conf-Datei erstellst, Einstellungen anpasst und den Simplifier neu startest. HTTP-Timeouts, maximale Verbindungen und Chunk-Gr\u00f6\u00dfen k\u00f6nnen je nach Bedarf angepasst werden.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Native Einstellungen (include.conf) - Simplifier Makers Club\" \/>\n<meta property=\"og:description\" content=\"\u00c4ndere Server-Einstellungen, indem du auf die Konsole zugreifst, eine include.conf-Datei erstellst, Einstellungen anpasst und den Simplifier neu startest. HTTP-Timeouts, maximale Verbindungen und Chunk-Gr\u00f6\u00dfen k\u00f6nnen je nach Bedarf angepasst werden.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/\" \/>\n<meta property=\"og:site_name\" content=\"Simplifier Makers Club\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/simplifier.io\/\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-05T11:01:25+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@simplifier_io\" \/>\n<meta name=\"twitter:label1\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"5\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/einstellungen\\\/native-einstellungen-include-conf\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/einstellungen\\\/native-einstellungen-include-conf\\\/\"},\"author\":{\"name\":\"Christian Kleinschroth\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#\\\/schema\\\/person\\\/f8c8f6d71ca92598e95bd53c9a6e0fc6\"},\"headline\":\"Native Einstellungen (include.conf)\",\"datePublished\":\"2024-07-24T09:51:39+00:00\",\"dateModified\":\"2026-02-05T11:01:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/einstellungen\\\/native-einstellungen-include-conf\\\/\"},\"wordCount\":610,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#organization\"},\"inLanguage\":\"de\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/einstellungen\\\/native-einstellungen-include-conf\\\/\",\"url\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/einstellungen\\\/native-einstellungen-include-conf\\\/\",\"name\":\"Native Einstellungen (include.conf) - Simplifier Makers Club\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#website\"},\"datePublished\":\"2024-07-24T09:51:39+00:00\",\"dateModified\":\"2026-02-05T11:01:25+00:00\",\"description\":\"\u00c4ndere Server-Einstellungen, indem du auf die Konsole zugreifst, eine include.conf-Datei erstellst, Einstellungen anpasst und den Simplifier neu startest. HTTP-Timeouts, maximale Verbindungen und Chunk-Gr\u00f6\u00dfen k\u00f6nnen je nach Bedarf angepasst werden.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/einstellungen\\\/native-einstellungen-include-conf\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/einstellungen\\\/native-einstellungen-include-conf\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/einstellungen\\\/native-einstellungen-include-conf\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Administrator-Handbuch\",\"item\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/leitfaden-fuer-administratoren\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Einstellungen\",\"item\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/doc\\\/leitfaden-fuer-administratoren\\\/einstellungen\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Native Einstellungen (include.conf)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#website\",\"url\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/\",\"name\":\"Simplifier Makers Club\",\"description\":\"Where Ideas become Digital Reality - Simplifier Documentation, Knowledgebase, Forum, Courses and Marketplace\",\"publisher\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#organization\",\"name\":\"Simplifier AG\",\"url\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/community.simplifier.io\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/simplifier-logo.png\",\"contentUrl\":\"https:\\\/\\\/community.simplifier.io\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/simplifier-logo.png\",\"width\":651,\"height\":150,\"caption\":\"Simplifier AG\"},\"image\":{\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/simplifier.io\\\/\",\"https:\\\/\\\/x.com\\\/simplifier_io\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/simplifier-ag\\\/\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/Simplifier\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/de\\\/#\\\/schema\\\/person\\\/f8c8f6d71ca92598e95bd53c9a6e0fc6\",\"name\":\"Christian Kleinschroth\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/community.simplifier.io\\\/wp-content\\\/uploads\\\/avatars\\\/3005\\\/1713534997-bpfull.png\",\"url\":\"https:\\\/\\\/community.simplifier.io\\\/wp-content\\\/uploads\\\/avatars\\\/3005\\\/1713534997-bpfull.png\",\"contentUrl\":\"https:\\\/\\\/community.simplifier.io\\\/wp-content\\\/uploads\\\/avatars\\\/3005\\\/1713534997-bpfull.png\",\"caption\":\"Christian Kleinschroth\"},\"description\":\"Hi, I\u2019m Christian, CTO and Co-Founder of Simplifier. My passion lies in driving technological innovation to empower businesses with our low-code platform. I lead our technical teams to ensure that our solutions are cutting-edge, secure, and scalable, meeting the highest standards of quality and performance. At Simplifier, we are committed to transforming the way you develop applications, making it faster and more efficient to achieve your goals.\",\"sameAs\":[\"https:\\\/\\\/de.linkedin.com\\\/in\\\/christian-kleinschroth-a491a06b\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Native Einstellungen (include.conf) - Simplifier Makers Club","description":"\u00c4ndere Server-Einstellungen, indem du auf die Konsole zugreifst, eine include.conf-Datei erstellst, Einstellungen anpasst und den Simplifier neu startest. HTTP-Timeouts, maximale Verbindungen und Chunk-Gr\u00f6\u00dfen k\u00f6nnen je nach Bedarf angepasst werden.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/","og_locale":"de_DE","og_type":"article","og_title":"Native Einstellungen (include.conf) - Simplifier Makers Club","og_description":"\u00c4ndere Server-Einstellungen, indem du auf die Konsole zugreifst, eine include.conf-Datei erstellst, Einstellungen anpasst und den Simplifier neu startest. HTTP-Timeouts, maximale Verbindungen und Chunk-Gr\u00f6\u00dfen k\u00f6nnen je nach Bedarf angepasst werden.","og_url":"https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/","og_site_name":"Simplifier Makers Club","article_publisher":"https:\/\/www.facebook.com\/simplifier.io\/","article_modified_time":"2026-02-05T11:01:25+00:00","twitter_card":"summary_large_image","twitter_site":"@simplifier_io","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"5\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/#article","isPartOf":{"@id":"https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/"},"author":{"name":"Christian Kleinschroth","@id":"https:\/\/community.simplifier.io\/de\/#\/schema\/person\/f8c8f6d71ca92598e95bd53c9a6e0fc6"},"headline":"Native Einstellungen (include.conf)","datePublished":"2024-07-24T09:51:39+00:00","dateModified":"2026-02-05T11:01:25+00:00","mainEntityOfPage":{"@id":"https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/"},"wordCount":610,"commentCount":0,"publisher":{"@id":"https:\/\/community.simplifier.io\/de\/#organization"},"inLanguage":"de"},{"@type":"WebPage","@id":"https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/","url":"https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/","name":"Native Einstellungen (include.conf) - Simplifier Makers Club","isPartOf":{"@id":"https:\/\/community.simplifier.io\/de\/#website"},"datePublished":"2024-07-24T09:51:39+00:00","dateModified":"2026-02-05T11:01:25+00:00","description":"\u00c4ndere Server-Einstellungen, indem du auf die Konsole zugreifst, eine include.conf-Datei erstellst, Einstellungen anpasst und den Simplifier neu startest. HTTP-Timeouts, maximale Verbindungen und Chunk-Gr\u00f6\u00dfen k\u00f6nnen je nach Bedarf angepasst werden.","breadcrumb":{"@id":"https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/community.simplifier.io\/de\/doc\/einstellungen\/native-einstellungen-include-conf\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/community.simplifier.io\/de\/"},{"@type":"ListItem","position":2,"name":"Administrator-Handbuch","item":"https:\/\/community.simplifier.io\/de\/doc\/leitfaden-fuer-administratoren\/"},{"@type":"ListItem","position":3,"name":"Einstellungen","item":"https:\/\/community.simplifier.io\/de\/doc\/leitfaden-fuer-administratoren\/einstellungen\/"},{"@type":"ListItem","position":4,"name":"Native Einstellungen (include.conf)"}]},{"@type":"WebSite","@id":"https:\/\/community.simplifier.io\/de\/#website","url":"https:\/\/community.simplifier.io\/de\/","name":"Simplifier Makers Club","description":"Where Ideas become Digital Reality - Simplifier Documentation, Knowledgebase, Forum, Courses and Marketplace","publisher":{"@id":"https:\/\/community.simplifier.io\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/community.simplifier.io\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/community.simplifier.io\/de\/#organization","name":"Simplifier AG","url":"https:\/\/community.simplifier.io\/de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/community.simplifier.io\/de\/#\/schema\/logo\/image\/","url":"https:\/\/community.simplifier.io\/wp-content\/uploads\/2024\/09\/simplifier-logo.png","contentUrl":"https:\/\/community.simplifier.io\/wp-content\/uploads\/2024\/09\/simplifier-logo.png","width":651,"height":150,"caption":"Simplifier AG"},"image":{"@id":"https:\/\/community.simplifier.io\/de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/simplifier.io\/","https:\/\/x.com\/simplifier_io","https:\/\/www.linkedin.com\/company\/simplifier-ag\/","https:\/\/www.youtube.com\/c\/Simplifier\/"]},{"@type":"Person","@id":"https:\/\/community.simplifier.io\/de\/#\/schema\/person\/f8c8f6d71ca92598e95bd53c9a6e0fc6","name":"Christian Kleinschroth","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/community.simplifier.io\/wp-content\/uploads\/avatars\/3005\/1713534997-bpfull.png","url":"https:\/\/community.simplifier.io\/wp-content\/uploads\/avatars\/3005\/1713534997-bpfull.png","contentUrl":"https:\/\/community.simplifier.io\/wp-content\/uploads\/avatars\/3005\/1713534997-bpfull.png","caption":"Christian Kleinschroth"},"description":"Hi, I\u2019m Christian, CTO and Co-Founder of Simplifier. My passion lies in driving technological innovation to empower businesses with our low-code platform. I lead our technical teams to ensure that our solutions are cutting-edge, secure, and scalable, meeting the highest standards of quality and performance. At Simplifier, we are committed to transforming the way you develop applications, making it faster and more efficient to achieve your goals.","sameAs":["https:\/\/de.linkedin.com\/in\/christian-kleinschroth-a491a06b"]}]}},"_links":{"self":[{"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/docs\/50604","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/types\/manual_documentation"}],"author":[{"embeddable":true,"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/users\/3005"}],"version-history":[{"count":5,"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/docs\/50604\/revisions"}],"predecessor-version":[{"id":75535,"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/docs\/50604\/revisions\/75535"}],"up":[{"embeddable":true,"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/docs\/48057"}],"wp:attachment":[{"href":"https:\/\/community.simplifier.io\/de\/wp-json\/wp\/v2\/media?parent=50604"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}