skip to Main Content

Allow access to phpmyadmin from localhost only

I am trying to config my server phpmyadmin to access only from the localhost and not from the remote. Below is the configuration on server /etc/phpmyadmin/apache.conf Alias /phpmyadmin /usr/share/phpmyadmin <Directory /usr/share/phpmyadmin> Order deny,allow Deny from all Allow from 127.0.0.1 Options…

VIEW QUESTION

i am facing error while compiling the source code in apache

Below is the error while running make command /home/apache/httpd-2.4.41/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -L/opt/httpd/expat/lib -o ab ab.lo /home/apache/httpd-2.4.41/srclib/apr-util/libaprutil-1.la -lexpat /home/apache/httpd-2.4.41/srclib/apr/libapr-1.la -luuid -lrt -lcrypt -lpthread -ldl -lm -lssl -lcrypto -luuid -lrt -lcrypt -lpthread -ldl ab.o: In function `ssl_state_cb':…

VIEW QUESTION

install redmine on Ubuntu 18.04 – Apache

I am trying to get redmine running on an Ubuntu 18.04 with apache. I followed these instructions: https://www.howtoforge.com/how-to-install-and-configure-redmine-on-ubuntu-1804/ without any problems. Apache is running and I can access the default apache page "it works" at: http://192.168.178.100/. But if I try…

VIEW QUESTION

pm2 via apache server

I want to control my pm2 app via apache server. I have tried it via a bash script and php. Here is my index.php: <html> <head> <meta c </head> <?php if (isset($_POST['RightOPEN'])) { exec("/home/pi/startmm.sh"); } if (isset($_POST['LeftOPEN'])) { exec("/home/pi/channel4.sh"); }…

VIEW QUESTION

Redirection using htaccess file? – Apache

I have a website and I need the following redirections : www.example.com > example.com http requests redirected to https I wrote the following rules : #Redirect http://example.com to https://example.com RewriteEngine on RewriteCond %{HTTP_HOST} ^example.com RewriteRule ^(.*)$ https://example.com$1 [R=permanent,L] #Redirect www…

VIEW QUESTION
Back To Top
Search