Search found 3 matches
- Fri Apr 12, 2019 5:22 am
- Forum: Web Server
- Topic: Http request methods - apache2
- Replies: 4
- Views: 5173
Re: Http request methods - apache2
root@malawishop:~# httpd -l | grep mod_allowmethods -bash: httpd: command not found root@malawishop:~# apache2 -l | grep -i mod_allowmethods root@malawishop:~# apache2 -l Compiled in modules: core.c mod_so.c mod_watchdog.c http_core.c mod_log_config.c mod_logio.c mod_version.c mod_unixd.c root@mala...
- Thu Apr 11, 2019 12:50 pm
- Forum: Web Server
- Topic: Http request methods - apache2
- Replies: 4
- Views: 5173
Re: Http request methods - apache2
Try create custom httpd include for domain: /home/$USER/conf/web/httpd.$DOMAIN.TLD.conf-allowmethods <Directory /home/$USER/web/$DOMAIN.TLD/public_html> AllowMethods GET HEAD POST PUT DELETE CONNECT OPTIONS TRACE PATCH PROPFIND PROPPATCH MKCOL COPY MOVE LOCK UNLOCK </Directory> PS. Check if you hav...
- Tue Apr 09, 2019 6:25 am
- Forum: Web Server
- Topic: Http request methods - apache2
- Replies: 4
- Views: 5173
Http request methods - apache2
Hi Guys First of all I want tell you something about Vesta - it works awesome. But... I use VestaCP for couple years and now I have a little problem. My client wants to use his own api. He need a "GET, POST, PUT, DELETE, HEAD" HTTP requests methods. I tried many solutions to set these options but th...