Skip to content

Instantly share code, notes, and snippets.

View t-leclercq's full-sized avatar
📚
Improving (i guess)

Thomas Leclercq t-leclercq

📚
Improving (i guess)
View GitHub Profile
@cecilemuller
cecilemuller / letsencrypt_2020.md
Last active July 14, 2024 19:55
How to setup Let's Encrypt for Nginx on Ubuntu 18.04 (including IPv6, HTTP/2 and A+ SSL rating)

How to setup Let's Encrypt for Nginx on Ubuntu 18.04 (including IPv6, HTTP/2 and A+ SLL rating)


Virtual hosts

Let's say you want to host domains first.com and second.com.

Create folders for their files:

@enqtran
enqtran / [React native] Custom back Buton in react-native-router-flux
Last active May 11, 2022 19:00
Custom back button in react-native-router-flux
.....
const renderBackButton = () => (
<TouchableOpacity
onPress={() => Actions.pop()}
>
<View style={{ alignItems: 'center' }}>
<Image
source={require('./components/images/icon_back.png')}
style={{ width: 30, height: 20 }}