View httpd.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
# | |
# This is the main Apache HTTP server configuration file. It contains the | |
# configuration directives that give the server its instructions. | |
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information. | |
# In particular, see | |
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html> | |
# for a discussion of each configuration directive. | |
# | |
# Do NOT simply read the instructions in here without understanding | |
# what they do. They're here only as hints or reminders. If you are unsure |
View index.html
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
<div class="line-chart"> | |
<div class="aspect-ratio"> | |
<canvas id="chart"></canvas> | |
</div> | |
</div> |
View default.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
# You may add here your | |
# server { | |
# ... | |
# } | |
# statements for each of your virtual hosts to this file | |
## | |
# You should look at the following URL's in order to grasp a solid understanding | |
# of Nginx configuration files in order to fully unleash the power of Nginx. | |
# http://wiki.nginx.org/Pitfalls |
View and
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
from .env import YowsupEnv | |
import base64 | |
import hashlib | |
class AndroidYowsupEnv(YowsupEnv): | |
_SIGNATURE = "MIIDMjCCAvCgAwIBAgIETCU2pDALBgcqhkjOOAQDBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFDASBgNV" \ | |
"BAcTC1NhbnRhIENsYXJhMRYwFAYDVQQKEw1XaGF0c0FwcCBJbmMuMRQwEgYDVQQLEwtFbmdpbmVlcmluZzEUMBIGA1UEAxMLQnJ" \ | |
"pYW4gQWN0b24wHhcNMTAwNjI1MjMwNzE2WhcNNDQwMjE1MjMwNzE2WjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5" \ | |
"pYTEUMBIGA1UEBxMLU2FudGEgQ2xhcmExFjAUBgNVBAoTDVdoYXRzQXBwIEluYy4xFDASBgNVBAsTC0VuZ2luZWVyaW5nMRQwEg" \ |
View command.sh
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
docker run -d -p 1883:1883 --name=mosquitto | |
-v //c//Users//houssem.fathallah//data:/var/messageSight/ | |
-v //c//Users//houssem.fathallah//data//mosquito:/etc/mosquitto \ | |
-v //c//Users//houssem.fathallah//data//mosquito.d:/etc/mosquitto.d \ | |
-v //c//Users//houssem.fathallah//var//mosquitto:/var/lib/mosquitto \ | |
-v //c//Users//houssem.fathallah//var//mosquitto/auth-plug.conf:/etc/mosquitto.d/auth-plugin.conf \ | |
sourceperl/mosquitto |
View installtions.md
Get Http plugin
Download .ez file the rabbit MQ plugin
Move the plugin ez file rabbitmq_auth_backend_http-3.6.x-1b27d722.ez
under plugins folder of rabbitMQ server installtion
Plugin enabling
- To enable http backend plugin
rabbitmq-plugins.bat enable rabbitmq_auth_backend_http
- To enable the SASL mechanism
View Issues.md
lookup address issue
docker-machine ssh
echo "nameserver 8.8.8.8" > /etc/resolv.conf
View commands_flask_app_locally
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
50 ls | |
2051 chmod 777 -R Dockerfile | |
2052 rm Dockerfile~ | |
2053 rm server.py~ | |
2054 ls | |
2055 docker build flask_app . | |
2056 docker build . | |
2057 docker | |
2058 docker build --h | |
2059 docker build --help |
View tips.md
Error when pulling with
You have not concluded your merge (MERGE_HEAD exists)
You have not concluded your merge (MERGE_HEAD exists)
Error when pulling with git merge --abort
reolve confilcts
git pull
get a clean copy of ressources
git merge --abort
git pull -Xtheirs github master
NewerOlder