Host Europe
Connect Host Europe with Webflow to manage DNS, embed hosting widgets, and automate domain provisioning workflows.

How to integrate Host Europe with Webflow
Host Europe provides domain registration and web hosting services through the Plesk control panel. Connecting custom domains from Host Europe to Webflow requires DNS configuration, while advanced integrations use the Plesk API for domain and DNS management automation.
This integration supports two implementation paths. Manual DNS configuration connects your Host Europe domain to Webflow through standard A and CNAME records. API-based workflows use the Plesk REST API to automate domain provisioning and DNS record management for agency teams managing multiple client sites.
Configure DNS records manually
Manual DNS configuration connects your Host Europe domain to Webflow by pointing DNS records to Webflow's servers. This method works for single domain connections and requires access to your Host Europe Plesk control panel.
Access your Plesk control panel at https://your-server:8443 and navigate to Domains > DNS Settings for your domain. Add these DNS records:
- A record pointing
@(root domain) to75.2.70.75 - A record pointing
@(root domain) to99.83.190.102 - CNAME record pointing
wwwsubdomain toproxy-ssl.webflow.com
Remove any existing A or CNAME records for your root domain and www subdomain before adding new records. DNS propagation can take up to 48 hours, though changes typically appear within a few hours.
After DNS records propagate, connect your custom domain in Webflow by opening your site dashboard, navigating to Site settings > Publishing > Custom domains, and following the Quick Connect prompts. Webflow will verify DNS configuration and provision SSL certificates automatically.
Build with Plesk and Webflow APIs
The Plesk API enables programmatic domain and DNS management for agencies provisioning multiple client sites. This approach requires custom code but provides complete control over domain workflows through REST endpoints.
Plesk Obsidian provides a REST API at https://your-server:8443/api/v2 with Bearer token authentication. Generate API credentials in your Plesk control panel under Tools & Settings > API Access. Webflow uses OAuth 2.0 authentication documented in the Webflow API reference.
Provision domains through Plesk API
Create domains programmatically using the Plesk domains endpoint:
POST https://your-server:8443/api/v2/domains
Authorization: Bearer {plesk_api_token}
Content-Type: application/json
{
"name": "example.com",
"hosting_type": "virtual"
}
The response includes a domain ID for subsequent DNS configuration. Retrieve existing domains with:
GET https://your-server:8443/api/v2/domains
Authorization: Bearer {plesk_api_token}
Manage DNS records programmatically
Configure DNS records for domains using the Plesk DNS endpoints. Add A records pointing to Webflow:
POST https://your-server:8443/api/v2/domains/{domain_id}/dns/records
Authorization: Bearer {plesk_api_token}
Content-Type: application/json
{
"type": "A",
"host": "@",
"value": "75.2.70.75"
}
Repeat for the second A record (99.83.190.102) and CNAME record:
POST https://your-server:8443/api/v2/domains/{domain_id}/dns/records
Authorization: Bearer {plesk_api_token}
Content-Type: application/json
{
"type": "CNAME",
"host": "www",
"value": "proxy-ssl.webflow.com"
}
List existing DNS records with:
GET https://your-server:8443/api/v2/domains/{domain_id}/dns/records
Authorization: Bearer {plesk_api_token}
Delete records using their ID:
DELETE https://your-server:8443/api/v2/domains/{domain_id}/dns/records/{record_id}
Authorization: Bearer {plesk_api_token}
Retrieve Webflow custom domains
The Webflow API provides read access to custom domains configured for a site. Retrieve custom domains with:
GET https://api.webflow.com/v2/sites/{site_id}/custom_domains
Authorization: Bearer {webflow_access_token}
The response includes domain names and connection status. Note that Webflow's API does not support programmatic domain creation or DNS modification. Custom domains must be connected manually through the Webflow dashboard after DNS configuration in Plesk.
Log domain operations in Webflow CMS
Store domain provisioning records in a Webflow CMS collection to track client domains and DNS configuration status. Create a collection with fields for domain name, client identifier, configuration date, and status.
Add items to your collection using the Webflow CMS API:
POST https://api.webflow.com/v2/collections/{collection_id}/items
Authorization: Bearer {webflow_access_token}
Content-Type: application/json
{
"fieldData": {
"name": "example.com",
"slug": "example-com",
"client-name": "Client ABC",
"status": "DNS Configured"
}
}
Update items as domain configuration progresses:
PATCH https://api.webflow.com/v2/collections/{collection_id}/items/{item_id}
Authorization: Bearer {webflow_access_token}
Content-Type: application/json
{
"fieldData": {
"status": "Connected to Webflow"
}
}
Publish sites programmatically
After connecting custom domains, publish sites to custom domains through the Webflow API. The publish endpoint supports domain-specific publishing:
POST https://api.webflow.com/v2/sites/{site_id}/publish
Authorization: Bearer {webflow_access_token}
Content-Type: application/json
{
"customDomains": ["6553c49e44e6b1e01e2f7e6c"], // Use domain IDs from GET /custom_domains
"publishToWebflowSubdomain": true // Optional: also publish to staging
}
What you can build
Integrating Host Europe with Webflow requires custom development for automation workflows, as no pre-built widgets or no-code solutions exist for this integration.
- Agency domain provisioning system: Build internal tools that provision domains through the Plesk API, configure DNS records automatically, and log operations in Webflow CMS for client tracking (Note: Webflow domain connections still require manual setup through the dashboard after DNS configuration)
- Client portal with domain status tracking: Create a client-facing site using Webflow CMS to display domain connection status, DNS propagation progress, and SSL certificate provisioning, pulling data from your provisioning system's API or database
- Multi-site DNS management dashboard: Build a custom administrative interface that retrieves domain configurations from Plesk, displays connection status from Webflow's API, and provides bulk DNS update capabilities for managing client domains at scale
Frequently asked questions
Configure specific A records and CNAME records in your Host Europe DNS management panel to direct traffic to Webflow's infrastructure. According to Webflow's DNS troubleshooting guide, you need two A records for the root domain pointing to 75.2.70.75 and 99.83.190.102, plus a CNAME record for the www subdomain pointing to proxy-ssl.webflow.com.
Set the hostname to '@' for root domain A records and 'www' for the subdomain CNAME. After saving DNS changes in Host Europe's control panel, add both the root domain and www subdomain in your Webflow site settings under Publishing > Production.
Set one as the default domain to prevent redirect loops. DNS propagation typically completes within 48 hours, though changes may appear faster depending on TTL settings.
Yes, Webflow automatically provisions and renews SSL certificates using Let's Encrypt for sites created after November 14, 2018, provided DNS records point correctly to Webflow's servers. According to Webflow's SSL hosting documentation, the automatic provisioning process begins once your DNS configuration resolves to Webflow's infrastructure and no proxy services interfere with certificate validation.
The SSL certificate appears in your site settings within a few hours of DNS propagation completing. Webflow handles all renewal operations automatically before expiration. If certificates fail to provision, verify that your Host Europe DNS records match Webflow's requirements exactly and that no CDN or proxy service sits between the domain and Webflow's servers.
No, you cannot host on Host Europe while maintaining Webflow CMS functionality. Exported Webflow sites lose all server-side features including CMS, forms processing, and automatic SSL management. Webflow operates on a binary hosting model where sites either host entirely on Webflow's AWS infrastructure or export as static code to host elsewhere.
If EU data residency requirements mandate Host Europe hosting, you must export your Webflow site and implement custom PHP or Node.js solutions for dynamic content management on Host Europe's servers. This approach eliminates Webflow's visual CMS editing capabilities and requires manual database configuration through Plesk.
Yes, embedding Host Europe widgets requires a paid Webflow workspace or site plan. The Code Embed element necessary for inserting Host Europe's HTML, iframe, or JavaScript widgets requires Core, Growth, Agency, or Freelancer workspace plans, or sites with active Site plans. Free Webflow accounts cannot access custom code embedding features.
All server-side form processing stops working when you export Webflow sites to Host Europe hosting. Exported sites lose form submission handling, CMS functionality, and all server-side features that require Webflow's infrastructure. You must implement custom PHP form handlers, configure SMTP email delivery through Host Europe's cPanel, and build database connectivity manually.
Webflow staging domains on *.webflow.io addresses also have form submission limits of 50 per month regardless of plan tier. Your workflow requires testing forms extensively or processing high volumes of submissions, host on Webflow's production infrastructure with a paid site plan rather than exporting to Host Europe.

Description
Host Europe is a European web hosting provider offering domain registration, shared hosting, VPS servers, and managed hosting services powered by Plesk Obsidian. The company provides DNS management, SSL certificates, and cPanel/Plesk control panels for server administration across Germany and European data centers.
This integration page is provided for informational and convenience purposes only.

One.com
Point your One.com domain name to Webflow

Name.com
Point your Name.com domain name to Webflow

Network Solutions
Connect Network Solutions with Webflow to host your custom domain using automated DNS setup or manual configuration.

Namecheap (registrar-servers.com)
Point your Namecheap domain name to Webflow

NameSilo
Connect NameSilo domains to Webflow sites through DNS configuration for custom domain hosting.

Media Temple (mediatemple.net)
Point your Media Temple domain name to Webflow

iwantmyname
Set up Webflow from the iwantmyname dashboard and get your site live on your domain.
InMotion Hosting
Connect InMotion Hosting's reliable infrastructure with Webflow to create powerful websites. Point your InMotion domain to Webflow-hosted sites, export Webflow designs for InMotion hosting, or build hybrid solutions that leverage both platforms' strengths.

iPage by Network Solutions
Connect your iPage domain and hosting services with Webflow to leverage affordable hosting infrastructure while maintaining complete design control.


