Skip to content

Instantly share code, notes, and snippets.

@Egregius
Created February 8, 2020 05:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Egregius/14491fbfe009fe056ffe1fb30f433222 to your computer and use it in GitHub Desktop.
Save Egregius/14491fbfe009fe056ffe1fb30f433222 to your computer and use it in GitHub Desktop.
ifttt applet skipped fix
Header unset Upgrade
<VirtualHost *:80>
ServerName sub.domain.com
DirectoryIndex index.php
DocumentRoot /var/www/sub.domain.com
ErrorLog /var/log/www/error/sub.domain.com.log
CustomLog /var/log/www/access/sub.domain.com.log combined
<Directory /var/www/sub.domain.com>
AllowOverride All
</Directory>
<IfModule mod_rewrite.c>
RewriteEngine off
</IfModule>
</VirtualHost>
@diegooliveiralima
Copy link

diegooliveiralima commented Nov 24, 2020

My Applet skipped, ETIMEDOUT error, but where I put this code? (sub.domain.com.conf and .htacess). My script runs on Heroku.

@Egregius
Copy link
Author

You need access to the Virtualhost file of your Apache2 server for this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment