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
java -cp "D:\\JetBrains\\IntelliJ IDEA\\plugins\\java-decompiler\\lib\\java-decompiler.jar" org.jetbrains.java.decompiler.main.decompiler.ConsoleDecompiler -dgs=true "D:\\classDir" "D:\\srcDir" |
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
#!/bin/bash | |
function write_http_conf() { | |
cat > ./nginx.conf << EOF | |
server { | |
error_log /var/log/nginx/error.log; | |
access_log /var/log/nginx/access.log; | |
rewrite ^/$ /haha-music/ redirect; | |
rewrite ^/haha-music$ /haha-music/ redirect; |