smart4solutions / apex_oauth

PL/SQL packages enabling Google, Linkedin and Facebook login for apex
MIT License
38 stars 5 forks source link

https in Apache 2.4 #7

Open Yah0000 opened 8 years ago

Yah0000 commented 8 years ago

In new version of Apache

<Proxy *>
  Order deny,allow
  Allow from all
</Proxy> 

is replace to

<Proxy *>
  Require all granted
</Proxy> 

It is describe at https://httpd.apache.org/docs/2.4/upgrading.html

It could be helpful for someone :)

rmartenss4s commented 8 years ago

Thanks for your comment.

What version of Apache are you referring to?

Yah0000 commented 8 years ago

This works at Apache 2.4 (I use this) - other works as you describe

<Proxy *>
  Require all granted
</Proxy> 

And this should works at 2.2 (this is in your httpd file):

<Proxy *>
  Order deny,allow
  Allow from all
</Proxy>