-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
… PHPMyAdmin padrão com NGinx
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
logbook/aguia-pescadora-bravo/etc/nginx/sites-available/phpmyadmin.apb.etica.ai.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# FILE: /etc/nginx/sites-available/phpmyadmin.abp.etica.ai.conf | ||
|
||
server { | ||
|
||
listen 80; | ||
listen [::]:80; | ||
|
||
server_name phpmyadmin.apb.etica.ai; | ||
root /usr/share/phpmyadmin; | ||
index index.html index.htm index.php; | ||
|
||
location / { | ||
proxy_ignore_client_abort on; | ||
proxy_pass http://127.0.0.1:9999; | ||
} | ||
} |