Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > Gazelle
Reply
  #11  
Old 31st December 2016, 00:10
DND's Avatar
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,237
Default
use apache2..nginx kinda suckz..
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
Reply With Quote
  #12  
Old 31st December 2016, 01:18
chevyman78's Avatar
chevyman78 chevyman78 is offline
Member
 
Join Date: Nov 2012
Canada
Posts: 12
Default
i could but that don't figure out why it don't work tho.
Reply With Quote
  #13  
Old 31st December 2016, 02:36
DND's Avatar
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,237
Default
go into your conf available directory from nginx..look for @phpmyadmin.conf
get into that conf..make sure alias(location):
Alias /phpmyadmin /usr/share/phpmyadmin

restart nginx/php5-fpm..
give it another go.
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
Reply With Quote
  #14  
Old 31st December 2016, 02:41
chevyman78's Avatar
chevyman78 chevyman78 is offline
Member
 
Join Date: Nov 2012
Canada
Posts: 12
Default
i dont see that at all
Reply With Quote
  #15  
Old 31st December 2016, 02:47
DND's Avatar
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,237
Default
well why not? if its for apache it should be for nginx.. never used nginx
btw.. phpmyadmin is not suported by default with nginx, only apache2 and lighthttpd

Open /etc/nginx/sites-available/ ... default config and default ssl..if you have any then add:

Code:
location /phpmyadmin {               
 root /usr/share/;                
index index.php index.html index.htm;               
 location ~ ^/phpmyadmin/(.+\.php)$ {                        
try_files $uri =404;                      
  root /usr/share/;                        
fastcgi_pass 127.0.0.1:9000;                       
 fastcgi_index index.php;                       
 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;                      
  include /etc/nginx/fastcgi_params;                
}               
 location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {                        
root /usr/share/;               
 }        
 }        
 location /phpMyAdmin {               
 rewrite ^/* /phpmyadmin last;        
 }
Add the above in the server container
server{
...... code code
}
restart nginx
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
Reply With Quote
  #16  
Old 1st January 2017, 18:27
Gurkbit's Avatar
Gurkbit Gurkbit is offline
Senior Member
 
Join Date: Jun 2012
P2P
Posts: 46
Default
make sure the paths are correct maybe your root aint */*/html maybe it is */*/www and check that phpmyadmin is in usr/share/... if not you need to change the symlink according to it
Reply With Quote
  #17  
Old 29th January 2017, 15:01
about's Avatar
about about is offline
Member
 
Join Date: Nov 2016
Posts: 6
Default
You should try Adminer.

https://www.adminer.org/
Reply With Quote
  #18  
Old 2nd February 2017, 16:29
Phogo's Avatar
Phogo Phogo is offline
VIP
 
Join Date: Jan 2008
United Kingdom
Posts: 902
Default
Quote:
Originally Posted by DND View Post
btw.. phpmyadmin is not suported by default with nginx, only apache2 and lighthttpd
Of course it is, they even say so on their requirements page
Reply With Quote
  #19  
Old 2nd February 2017, 16:34
DND's Avatar
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,237
Default
when you install phpmyadmin you get only apache2 lighthttpd options to configure.
if use nginx need to manually configure the paths
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
Reply With Quote
  #20  
Old 2nd February 2017, 18:55
Phogo's Avatar
Phogo Phogo is offline
VIP
 
Join Date: Jan 2008
United Kingdom
Posts: 902
Default
You just need to make a symbolic link something similar to:

Code:
ln -s /usr/share/phpmyadmin /usr/share/nginx/html
Reply With Quote
Reply

Tags
phpmyadmin

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 09:54. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.