This file contains hidden or 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
server { | |
listen 80; | |
server_name joaovagner.com.br; | |
client_max_body_size 20M; | |
root /web/sites/joaovagner/; | |
index index.php; | |
charset UTF-8; | |
gzip on; |
This file contains hidden or 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
$data['footer_positions'] = View::forge('positios/footer_positions.php'); | |
$views['footer'] = View::forge('partials/footer', $data); |
This file contains hidden or 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
Response: 220 ProFTPD 1.3.5 Server (ProFTPD) [23.21.126.72] | |
Command: USER academia | |
Response: 331 Password required for academia | |
Command: PASS ******** | |
Response: 230 User academia logged in | |
Command: SYST | |
Response: 215 UNIX Type: L8 | |
Command: FEAT | |
Response: 211-Features: | |
Response: CCC |
This file contains hidden or 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
ftp> open 104.43.139.104 | |
Connected to 104.43.139.104. | |
220 (vsFTPd 2.2.2) | |
Name (104.43.139.104:joaovagner): tales | |
331 Please specify the password. | |
Password: | |
230 Login successful. | |
Remote system type is UNIX. | |
Using binary mode to transfer files. | |
ftp> ls |
This file contains hidden or 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
add_header 'Access-Control-Allow-Origin' 'http://example.com,http://developers.example.com'; | |
add_header 'Access-Control-Allow-Credentials' 'true'; | |
add_header 'Access-Control-Allow-Headers' 'Content-Type,Accept'; | |
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, PUT, DELETE'; |
This file contains hidden or 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
server { | |
listen 80; | |
server_name _; | |
root /var/www/html/dashboard-rivendel/public; | |
index index.php; | |
access_log /var/log/nginx/access-painel.log; | |
error_log /var/log/nginx/error-painel.log; |
This file contains hidden or 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
server { | |
listen 80; | |
server_name _; | |
access_log /var/log/nginx/blog-access.log ; | |
error_log /var/log/nginx/blog-error.log ; | |
location / { | |
root /var/www; | |
index index.html index.php; |
This file contains hidden or 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
server { | |
listen 80; | |
server_name _; | |
access_log /var/log/nginx/blog-access.log ; | |
error_log /var/log/nginx/blog-error.log ; | |
location / { | |
root /var/www; | |
index index.html index.php; |
This file contains hidden or 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
class CustomUser(DjangoDocument): | |
__collection__ = 'custom_users' | |
__database__ = 'criatrip' | |
structure = { | |
'first_name': unicode, | |
'last_name': unicode, | |
'email': unicode, | |
'profile': { | |
'date_birth': datetime.datetime, |
This file contains hidden or 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
log4j: Trying to find [log4j.xml] using context classloader sun.misc.Launcher$AppClassLoader@2e893a4a. | |
log4j: Trying to find [log4j.xml] using sun.misc.Launcher$AppClassLoader@2e893a4a class loader. | |
log4j: Trying to find [log4j.xml] using ClassLoader.getSystemResource(). | |
log4j: Trying to find [log4j.properties] using context classloader sun.misc.Launcher$AppClassLoader@2e893a4a. | |
log4j: Using URL [jar:file:/home/joaovagner/Desktop/AnypointStudio/plugins/org.mule.tooling.server.3.5.2.ee_4.1.0.201410311747/mule/tooling/tooling-support-3.5.2.jar!/log4j.properties] for automatic log4j configuration. | |
log4j: Reading configuration from URL jar:file:/home/joaovagner/Desktop/AnypointStudio/plugins/org.mule.tooling.server.3.5.2.ee_4.1.0.201410311747/mule/tooling/tooling-support-3.5.2.jar!/log4j.properties | |
log4j: Parsing for [root] with value=[INFO, console]. | |
log4j: Level token is [INFO]. | |
log4j: Category root set to INFO | |
log4j: Parsing appender named "console". |